]> git.tdb.fi Git - libs/datafile.git/blob - tool/tool.h
Move mspdatatool source to its own directory
[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 #include <string>
9 #include <msp/core/application.h>
10
11 class DataTool: public Msp::Application
12 {
13 private:
14         std::string in_fn;
15         std::string out_fn;
16         bool binary;
17 public:
18         DataTool(int argc, char **argv);
19         int main();
20
21         static Application::RegApp<DataTool> reg;
22 };