API  Version 2.0.1
Low-Latency HFT API
 All Classes Functions Variables
sgApiParameters.h
1 #ifndef SG_API_PARAMETERS_H
2 #define SG_API_PARAMETERS_H
3 namespace API2
4 {
10  {
11  public:
16  void* getInfo();
17 
22  int getClientId() ;
27  int getId();
28 
30  _clientId(-1),
31  _info(0),
32  _id(-1)
33  {}
34  protected:
38  int _clientId;
39 
43  void* _info;
47  int _id;
48 
49 
50 
51  };
52 }
53 #endif
int getClientId()
getClientId
int _id
_id
Definition: sgApiParameters.h:47
void * _info
_info
Definition: sgApiParameters.h:43
The StrategyParameters class provides the Basic Strategy Parameters, StrategyId and ClientId...
Definition: sgApiParameters.h:9
void * getInfo()
getInfo, Provides the Strategy Parameters
int _clientId
_clientId
Definition: sgApiParameters.h:38