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