]> git.tdb.fi Git - libs/datafile.git/blobdiff - tool/tool.h
Fix some minor mistakes
[libs/datafile.git] / tool / tool.h
index ab399ad85a43ff58662b93b1cf7bd42b838988e5..e649909c0f9be925ce599c6b20c46b79b62675e0 100644 (file)
@@ -1,29 +1,22 @@
-/* $Id$
-
-This file is part of libmspdatafile
-Copyright © 2008  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef TOOL_H_
 #define TOOL_H_
 
 #include <string>
 #include <msp/core/application.h>
 
-class DataTool: public Msp::Application
+class DataTool: public Msp::RegisteredApplication<DataTool>
 {
 private:
        std::string in_fn;
        std::string out_fn;
        bool binary;
        bool compile;
+       unsigned float_size;
+       bool compress;
 
 public:
        DataTool(int argc, char **argv);
        int main();
-
-       static Application::RegApp<DataTool> reg;
 };
 
 #endif