vnpy/vn.ib/ibapi/linux/client/SoftDollarTier.h

15 lines
307 B
C
Raw Normal View History

#pragma once
class TWSAPIDLLEXP SoftDollarTier
{
std::string m_name, m_val, m_displayName;
public:
SoftDollarTier(const std::string& name = "", const std::string& val = "", const std::string& displayName = "");
std::string name() const;
std::string val() const;
std::string displayName() const;
};