CommonLibSSE (powerof3)
IFuncCallQuery.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "RE/B/BSFixedString.h"
5 #include "RE/B/BSTArray.h"
6 #include "RE/B/BSTSmartPointer.h"
7 
8 namespace RE
9 {
10  namespace BSScript
11  {
12  class ObjectTypeInfo;
13  class Variable;
14 
15  namespace Internal
16  {
18  {
19  public:
20  inline static constexpr auto RTTI = RTTI_BSScript__Internal__IFuncCallQuery;
21  inline static constexpr auto VTABLE = VTABLE_BSScript__Internal__IFuncCallQuery;
22 
23  enum class CallType
24  {
25  kMember,
26  kStatic,
27  kGetter,
28  kSetter
29  };
30 
31  virtual ~IFuncCallQuery(); // 00
32 
33  // add
34  virtual bool GetFunctionCallInfo(CallType& a_callType, BSTSmartPointer<ObjectTypeInfo>& a_arg2, BSFixedString& a_arg3, Variable& a_arg4, BSScrapArray<Variable>& a_arg5) = 0; // 01
35 
36  // members
37  std::uint32_t pad0C; // 0C
38  };
39  static_assert(sizeof(IFuncCallQuery) == 0x10);
40  }
41  }
42 }
Definition: IFuncCallQuery.h:18
static constexpr auto VTABLE
Definition: IFuncCallQuery.h:21
static constexpr auto RTTI
Definition: IFuncCallQuery.h:20
std::uint32_t pad0C
Definition: IFuncCallQuery.h:37
virtual bool GetFunctionCallInfo(CallType &a_callType, BSTSmartPointer< ObjectTypeInfo > &a_arg2, BSFixedString &a_arg3, Variable &a_arg4, BSScrapArray< Variable > &a_arg5)=0
CallType
Definition: IFuncCallQuery.h:24
Definition: Variable.h:15
Definition: BSTArray.h:378
Definition: BSTSmartPointer.h:37
Definition: AbsorbEffect.h:6
constexpr REL::ID RTTI_BSScript__Internal__IFuncCallQuery(static_cast< std::uint64_t >(691846))
constexpr std::array< REL::ID, 1 > VTABLE_BSScript__Internal__IFuncCallQuery
Definition: Offsets_VTABLE.h:9468
Definition: BSIntrusiveRefCounted.h:8