BALL  1.4.79
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
XYZFile.h
Go to the documentation of this file.
1 // -*- Mode: C++; tab-width: 2; -*-
2 // vi: set ts=2:
3 //
4 
5 #ifndef BALL_FORMAT_XYZFILE_H
6 #define BALL_FORMAT_XYZFILE_H
7 
8 #ifndef BALL_FORMAT_GENERICMOLFILE_H
10 #endif
11 
12 namespace BALL
13 {
14  class System;
15  class Molecule;
16  class AtomContainer;
17 
35  : public GenericMolFile
36  {
37  public:
38 
42 
45  XYZFile();
46 
53  XYZFile(const String& filename, File::OpenMode open_mode = std::ios::in);
54 
57  virtual ~XYZFile();
58 
60 
63 
67  virtual bool write(const AtomContainer& ac);
68 
72  virtual bool write(const System& system);
73 
77  virtual bool write(const Molecule& mol);
78 
82  virtual bool read(System& system);
83 
87  virtual Molecule* read();
88 
90  BALL_DEPRECATED const String& getComent() const { return comment_; }
91 
93  const String& getComment() const { return comment_; }
94 
95  private:
96  const XYZFile& operator = (const XYZFile& file);
97 
98  String comment_;
99 
101  };
102 } // namespace BALL
103 
104 #endif // BALL_FORMAT_XYZFILE_H
BALL_DEPRECATED const String & getComent() const
Definition: XYZFile.h:90
#define BALL_DEPRECATED
Definition: COMMON/global.h:66
const String & getComment() const
Definition: XYZFile.h:93
std::ios::openmode OpenMode
Definition: file.h:168
#define BALL_EXPORT
Definition: COMMON/global.h:50