LeviLamina
Loading...
Searching...
No Matches
ContentGroup.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cricket {
6
8public:
9 // member variables
10 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI void AddContentName(::std::string_view);
23
25
26 MCAPI explicit ContentGroup(::std::string const&);
27
29
30 MCAPI ::std::string const* FirstContentName() const;
31
32 MCAPI bool HasContentName(::std::string_view) const;
33
34 MCAPI bool RemoveContentName(::std::string_view);
35
36 MCAPI ::std::string ToString() const;
37
38 MCAPI ::cricket::ContentGroup& operator=(::cricket::ContentGroup const&);
39
40 MCAPI ~ContentGroup();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(::cricket::ContentGroup&&);
47
48 MCAPI void* $ctor(::std::string const&);
49
50 MCAPI void* $ctor(::cricket::ContentGroup const&);
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCAPI void $dtor();
57 // NOLINTEND
58};
59
60} // namespace cricket
Definition ContentGroup.h:7
Definition Alias.h:14