Added build configuration system.
[aesalon.git] / include / monitor / config / FileParser.h
blob96e3cc7d47581e77e8033e7b562a21348bce6340
1 /**
2 Aesalon, a tool to visualize a program's behaviour at run-time.
3 Copyright (C) 2010, Aesalon Development Team.
5 Aesalon is distributed under the terms of the GNU GPLv3. For more
6 licensing information, see the file LICENSE included with the distribution.
8 @file include/monitor/config/FileParser.h
12 #include <string>
14 #ifndef AesalonMonitor_Config_FileParser_H
15 #define AesalonMonitor_Config_FileParser_H
17 #include "Store.h"
19 namespace Monitor {
20 namespace Config {
22 class FileParser {
23 private:
24 Store *m_store;
25 public:
26 FileParser(Store *store);
27 ~FileParser();
29 void parse(const std::string &filename);
32 } // namespace Config
33 } // namespace Monitor
35 #endif