ALPS Home Libraries License Support People ALPS Web Site

PrevUpHomeNext

Class IXDRFileDump

alps::IXDRFileDump

Synopsis

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


class IXDRFileDump : public alps::IXDRDump {
public:
  // construct/copy/destruct
  IXDRFileDump(const boost::filesystem::path &);
  ~IXDRFileDump();

  // public member functions
  bool couldOpen();

  // private member functions
  void open_file(const std::string &);
};

Description

a dump for deserializing objects from a file using the XDR format.

IXDRFileDump public construct/copy/destruct

  1. IXDRFileDump(const boost::filesystem::path & name);

    open a file.

    Throws:

    std::runtime_error
  2. ~IXDRFileDump();

IXDRFileDump public member functions

  1. bool couldOpen();

IXDRFileDump private member functions

  1. void open_file(const std::string &);
Copyright © 1994, 2002-2005 Matthias Troyer, Synge Todo

PrevUpHomeNext