ALPS Home Libraries License Support People ALPS Web Site

PrevUpHomeNext

Class OXDRFileDump

alps::OXDRFileDump

Synopsis

// In header: <alps/osiris/xdrdump.h>


class OXDRFileDump : public alps::OXDRDump {
public:
  // construct/copy/destruct
  OXDRFileDump(const boost::filesystem::path &, bool = false);
  ~OXDRFileDump();

  // public member functions
  void flush();

  // private member functions
  void open_file(const std::string &, bool = false);
};

Description

a dump for serializing objects into a file using the XDR format.

OXDRFileDump public construct/copy/destruct

  1. OXDRFileDump(const boost::filesystem::path & name, bool append = false);
    open a new dump file with the given name
  2. ~OXDRFileDump();

OXDRFileDump public member functions

  1. void flush();

OXDRFileDump private member functions

  1. void open_file(const std::string &, bool = false);
    open a file
Copyright © 1994, 2002-2005 Matthias Troyer, Synge Todo

PrevUpHomeNext