AlpacaLibary  1.63
A closed source C++ bot for OSRS
ParameterInfo.hpp
Go to the documentation of this file.
1 #ifndef PARAMETERINFO_HPP_INCLUDED
2 #define PARAMETERINFO_HPP_INCLUDED
3 
4 #include "CacheableNode.hpp"
5 #include "../JavaClass/Class.hpp"
6 #include <string>
7 
8 namespace Internal
9 {
11  {
12  public:
13  ParameterInfo(const void* Obj);
14 
15  ParameterInfo() = default;
17  ParameterInfo(const ParameterInfo& Obj) = default;
20 
21  static Class GetClass();
22 
23  std::int32_t GetInteger() const;
24  std::string GetString() const;
25 
26  };
27 }
28 
29 #endif // PARAMETERINFO_HPP_INCLUDED
ParameterInfo & operator=(ParameterInfo &&Obj)=default
ParameterInfo(const void *Obj)
static Class GetClass()
ParameterInfo(const ParameterInfo &Obj)=default
std::int32_t GetInteger() const
std::string GetString() const
ParameterInfo & operator=(const ParameterInfo &Obj)=default
ParameterInfo(ParameterInfo &&Obj)=default