trader  v0.1a
A framework to build trading applications
bittrexapp.h
1 #pragma once
2 
3 #include "app.h"
4 #include "applicationhelper.h"
5 #include "appsubsystem.h"
6 #include "connectionhelper.h"
7 #include "db.h"
8 #include "interface.h"
9 #include "tinyfsm.hpp"
10 #pragma once
11 
12 namespace trader
13 {
14  class BittrexApp : public ApplicationHelper
15  {
16 
17  protected:
18  int main(const std::vector< std::string > &args) override;
19  };
20 } // namespace trader
Definition: bittrexapp.h:14
Definition: app.h:7