vnpy/vn.api/vn.ib/ibapi/linux/client/PercentChangeCondition.cpp

27 lines
524 B
C++
Raw Normal View History

#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;
}