]> git.tdb.fi Git - libs/datafile.git/blobdiff - tool/tool.h
Move mspdatatool source to its own directory
[libs/datafile.git] / tool / tool.h
diff --git a/tool/tool.h b/tool/tool.h
new file mode 100644 (file)
index 0000000..99e8297
--- /dev/null
@@ -0,0 +1,22 @@
+/* $Id$
+
+This file is part of libmspdatafile
+Copyright © 2008  Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
+#include <string>
+#include <msp/core/application.h>
+
+class DataTool: public Msp::Application
+{
+private:
+       std::string in_fn;
+       std::string out_fn;
+       bool binary;
+public:
+       DataTool(int argc, char **argv);
+       int main();
+
+       static Application::RegApp<DataTool> reg;
+};