source: molecuilder/src/Parser/XyzParser.hpp@ 2e06c4

Last change on this file since 2e06c4 was f2efcf, checked in by Saskia Metzler <metzler@…>, 16 years ago

the XYZ parser

  • Property mode set to 100644
File size: 417 bytes
Line 
1/*
2 * XyzParser.hpp
3 *
4 * Created on: Mar 2, 2010
5 * Author: metzler
6 */
7
8#ifndef XYZPARSER_HPP_
9#define XYZPARSER_HPP_
10
11#include <string>
12#include "FormatParser.hpp"
13
14/**
15 * Parser for XYZ files.
16 */
17class XyzParser : public FormatParser {
18public:
19 XyzParser();
20 ~XyzParser();
21 void load(std::istream* file);
22 void save(std::ostream* file);
23
24private:
25 std::string comment;
26};
27
28#endif /* XYZPARSER_HPP_ */
Note: See TracBrowser for help on using the repository browser.