]> git.tdb.fi Git - libs/datafile.git/blob - tool/tool.h
Use custom encoding for floats in binary format
[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         unsigned float_size;
15
16 public:
17         DataTool(int argc, char **argv);
18         int main();
19 };
20
21 #endif