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 MCNAPI void AddContentName(::std::string_view);
23
25
26 MCNAPI explicit ContentGroup(::std::string const&);
27
29
30 MCNAPI ::std::string const* FirstContentName() const;
31
32 MCNAPI bool HasContentName(::std::string_view) const;
33
34 MCNAPI bool RemoveContentName(::std::string_view);
35
36 MCNAPI ::std::string ToString() const;
37
38 MCNAPI ::cricket::ContentGroup& operator=(::cricket::ContentGroup const&);
39
40 MCNAPI ~ContentGroup();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
47
48 MCNAPI void* $ctor(::std::string const&);
49
50 MCNAPI void* $ctor(::cricket::ContentGroup const&);
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCNAPI void $dtor();
57 // NOLINTEND
58};
59
60} // namespace cricket
Definition ContentGroup.h:7
MCAPI::std::string const * FirstContentName() const
MCAPI ContentGroup(::std::string const &)
MCAPI::cricket::ContentGroup & operator=(::cricket::ContentGroup const &)
MCAPI void * $ctor(::std::string const &)
MCAPI bool RemoveContentName(::std::string_view)
MCAPI bool HasContentName(::std::string_view) const
MCAPI::std::string ToString() const
MCAPI void * $ctor(::cricket::ContentGroup const &)
MCAPI ContentGroup(::cricket::ContentGroup const &)
MCAPI void AddContentName(::std::string_view)
MCAPI ContentGroup(::cricket::ContentGroup &&)
MCAPI void * $ctor(::cricket::ContentGroup &&)
Definition Alias.h:14