AlpacaLibary  1.63
A closed source C++ bot for OSRS
ItemContainer.hpp
Go to the documentation of this file.
1 #ifndef ITEMCONTAINER_HPP_INCLUDED
2 #define ITEMCONTAINER_HPP_INCLUDED
3 
4 #include "Node.hpp"
5 #include "../JavaClass/Class.hpp"
6 #include <vector>
7 #include <cstdint>
8 
9 namespace Internal
10 {
11  class ItemContainer : public Node
12  {
13  public:
14  ItemContainer(const void* Obj);
15 
16  ItemContainer() = default;
18  ItemContainer(const ItemContainer& Obj) = default;
21 
22  static Class GetClass();
23 
24  std::vector<std::int32_t> GetItemAmounts() const;
25  std::vector<std::int32_t> GetItemIDs() const;
26 
27  };
28 }
29 
30 #endif // ITEMCONTAINER_HPP_INCLUDED
ItemContainer(ItemContainer &&Obj)=default
ItemContainer(const ItemContainer &Obj)=default
ItemContainer & operator=(const ItemContainer &Obj)=default
std::vector< std::int32_t > GetItemAmounts() const
ItemContainer(const void *Obj)
std::vector< std::int32_t > GetItemIDs() const
static Class GetClass()
ItemContainer & operator=(ItemContainer &&Obj)=default