]> git.tdb.fi Git - libs/datafile.git/blob - tool/tool.h
a43fbfbf02d30958fb54f3ea3a853803e4a84922
[libs/datafile.git] / tool / tool.h
1 #ifndef TOOL_H_
2 #define TOOL_H_
3
4 #include <string>
5 #include <msp/core/application.h>
6
7 class DataTool: public Msp::RegisteredApplication<DataTool>
8 {
9 private:
10         std::string in_fn;
11         std::string out_fn;
12         bool binary;
13         bool compile;
14
15 public:
16         DataTool(int argc, char **argv);
17         int main();
18 };
19
20 #endif