source: molecuilder/src/FormatParser.hpp@ eb94c1

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

Work-in-progress commit of change tracker and parser

  • Property mode set to 100644
File size: 569 bytes
Line 
1/*
2 * FormatParser.hpp
3 *
4 * Created on: Mar 1, 2010
5 * Author: metzler
6 */
7
8#ifndef FORMATPARSER_HPP_
9#define FORMATPARSER_HPP_
10
11#include "Patterns/Observer.hpp"
12#include "ChangeTracker.hpp"
13#include "parser.hpp"
14
15using namespace std;
16
17class FormatParser : public Observer {
18public:
19 FormatParser();
20 ~FormatParser();
21 virtual void save(char* fileName);
22 virtual void load(char* fileName);
23
24private:
25 MatrixContainer* readData(char* fileName, int skiplines, int skipcolumns);
26 virtual int getHeaderSize(char identifier);
27};
28
29#endif /* FORMATPARSER_HPP_ */
Note: See TracBrowser for help on using the repository browser.