File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ class Trader {
138
138
auto getCompanyName (const std::string& symbol) -> std::string;
139
139
140
140
// sample prices
141
- auto requestSamplePrices (std::vector<std::string> symbols, double samplingFrequencyS, int samplingWindow) -> bool;
141
+ auto requestSamplePrices (std::vector<std::string> symbols, double samplingFrequencyS, unsigned int samplingWindow) -> bool;
142
142
auto cancelSamplePricesRequest (const std::vector<std::string>& symbols) -> bool;
143
143
auto cancelAllSamplePricesRequests () -> bool;
144
144
auto getSamplePricesSize (const std::string& symbol) -> int;
Original file line number Diff line number Diff line change @@ -242,7 +242,7 @@ auto Trader::getCompanyName(const std::string& symbol) -> std::string
242
242
return m_client->getCompanyName (symbol);
243
243
}
244
244
245
- auto Trader::requestSamplePrices (std::vector<std::string> symbols, double samplingFrequencyS, int samplingWindow) -> bool
245
+ auto Trader::requestSamplePrices (std::vector<std::string> symbols, double samplingFrequencyS, unsigned int samplingWindow) -> bool
246
246
{
247
247
return m_client->requestSamplePrices (symbols, samplingFrequencyS, samplingWindow);
248
248
}
You can’t perform that action at this time.
0 commit comments