#ifndef TRADE_HPP_INCLUDED #define TRADE_HPP_INCLUDED #include #include #include class Trade { public: static bool IsOpen(); static std::vector GetMyOfferItemIDs(); static std::vector GetMyOfferItemNames(); static std::vector GetMyOfferItemAmounts(); static std::vector GetTheirOfferItemIDs(); static std::vector GetTheirOfferItemNames(); static std::vector GetTheirOfferItemAmounts(); }; #endif // TRADE_HPP_INCLUDED