X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=tool%2Ftool.h;fp=tool%2Ftool.h;h=99e8297770ef9fd6cfd6a6e12c0f9cf0a2e680c4;hb=db9c49893c2a9475cb5efa4a53bc481a5f66231f;hp=0000000000000000000000000000000000000000;hpb=11ed2b907c9b031b57c3d4fc5491fdc3460303c9;p=libs%2Fdatafile.git diff --git a/tool/tool.h b/tool/tool.h new file mode 100644 index 0000000..99e8297 --- /dev/null +++ b/tool/tool.h @@ -0,0 +1,22 @@ +/* $Id$ + +This file is part of libmspdatafile +Copyright © 2008 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + +#include +#include + +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 reg; +};