]> git.tdb.fi Git - libs/datafile.git/blob - tool/tool.h
ab399ad85a43ff58662b93b1cf7bd42b838988e5
[libs/datafile.git] / tool / tool.h
1 /* $Id$
2
3 This file is part of libmspdatafile
4 Copyright © 2008  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef TOOL_H_
9 #define TOOL_H_
10
11 #include <string>
12 #include <msp/core/application.h>
13
14 class DataTool: public Msp::Application
15 {
16 private:
17         std::string in_fn;
18         std::string out_fn;
19         bool binary;
20         bool compile;
21
22 public:
23         DataTool(int argc, char **argv);
24         int main();
25
26         static Application::RegApp<DataTool> reg;
27 };
28
29 #endif