AlpacaLibary  1.63
A closed source C++ bot for OSRS
Trade.hpp
Go to the documentation of this file.
1 #ifndef TRADE_HPP_INCLUDED
2 #define TRADE_HPP_INCLUDED
3 
4 #include <cstdint>
5 #include <vector>
6 #include <string>
7 
8 namespace Trade
9 {
10  bool IsOpen();
11 
12  std::vector<std::int32_t> GetMyOfferItemIDs();
13  std::vector<std::string> GetMyOfferItemNames();
14  std::vector<std::int32_t> GetMyOfferItemAmounts();
15 
16  std::vector<std::int32_t> GetTheirOfferItemIDs();
17  std::vector<std::string> GetTheirOfferItemNames();
18  std::vector<std::int32_t> GetTheirOfferItemAmounts();
19 }
20 
21 #endif // TRADE_HPP_INCLUDED
Definition: Trade.hpp:9
std::vector< std::int32_t > GetTheirOfferItemAmounts()
bool IsOpen()
std::vector< std::string > GetMyOfferItemNames()
std::vector< std::int32_t > GetTheirOfferItemIDs()
std::vector< std::int32_t > GetMyOfferItemAmounts()
std::vector< std::int32_t > GetMyOfferItemIDs()
std::vector< std::string > GetTheirOfferItemNames()