vnpy/vn.ib/ibapi/linux/client/SoftDollarTier.cpp
2016-11-12 00:42:37 +08:00

22 lines
418 B
C++

#include "StdAfx.h"
#include "SoftDollarTier.h"
SoftDollarTier::SoftDollarTier(const std::string& name, const std::string& val, const std::string& displayName) :
m_name(name), m_val(val), m_displayName(displayName)
{
}
std::string SoftDollarTier::name() const
{
return m_name;
}
std::string SoftDollarTier::val() const
{
return m_val;
}
std::string SoftDollarTier::displayName() const
{
return m_displayName;
}