LeviLamina
Loading...
Searching...
No Matches
Properties.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Social::Events { class Property; }
8// clang-format on
9
10namespace Social::Events {
11
12class Properties {
13public:
14 // member variables
15 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 Properties& operator=(Properties const&);
22 Properties(Properties const&);
23 Properties();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCNAPI void addProperty(::Social::Events::Property const& property);
29 // NOLINTEND
30};
31
32} // namespace Social::Events
MCAPI void addProperty(::Social::Events::Property const &property)
Definition Property.h:7
Definition Alias.h:14