trader  v0.1a
A framework to build trading applications
jsonschema.h
1 #pragma once
2 #include "stdafx.h"
3 #include "endpoint.h"
4 #include "fileoutputstream.h"
5 
6 namespace trader
7 {
8 
9  using namespace Poco;
10  using namespace std;
11 
12  class JsonSchema : public SingletonHolder< JsonSchema >
13  {
14  public:
15  void process(const string &_namespace, const string &_inputDir, const string &outputdirectory);
16 
17  static JsonSchema instance;
18  };
19 
20 } // namespace trader
Definition: jsonschema.h:12
Definition: fileoutputstream.h:3
Definition: app.h:7