vnpy/vn.ib/ibapi/client/PercentChangeCondition.cpp
2016-08-23 23:45:06 +08:00

27 lines
524 B
C++

#include "StdAfx.h"
#include "PercentChangeCondition.h"
#include <sstream>
std::string PercentChangeCondition::valueToString() const {
std::stringstream tmp;
tmp << m_changePercent;
return tmp.str();
}
void PercentChangeCondition::valueFromString(const std::string & v) {
std::stringstream tmp;
tmp << v;
tmp >> m_changePercent;
}
double PercentChangeCondition::changePercent() {
return m_changePercent;
}
void PercentChangeCondition::changePercent(double changePercent) {
m_changePercent = changePercent;
}