LeviLamina
Loading...
Searching...
No Matches
StringConstraint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/cereal/ConstraintHandle.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace cereal { class SerializerContext; }
11namespace cereal::internal { struct ConstraintDescription; }
12// clang-format on
13
14namespace cereal {
15
16class StringConstraint : public ::cereal::ConstraintHandle<::cereal::StringConstraint> {
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 StringConstraint& operator=(StringConstraint const&);
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 3
32 virtual ::cereal::internal::ConstraintDescription description() const /*override*/;
33
34 // vIndex: 1
35 virtual ~StringConstraint() /*override*/;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
42
44
45 MCNAPI ::cereal::StringConstraint& regex(::std::string str, ::std::regex_constants::syntax_option_type flag);
46
47 MCNAPI void validateValue(::std::string const& str, ::cereal::SerializerContext& context) const;
48 // NOLINTEND
49
50public:
51 // static functions
52 // NOLINTBEGIN
53 MCNAPI static ::std::string flagsToString(::std::regex_constants::syntax_option_type flags);
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59 MCNAPI void* $ctor(::cereal::StringConstraint const&);
60
62 // NOLINTEND
63
64public:
65 // destructor thunk
66 // NOLINTBEGIN
67 MCNAPI void $dtor();
68 // NOLINTEND
69
70public:
71 // virtual function thunks
72 // NOLINTBEGIN
73 MCNAPI ::cereal::internal::ConstraintDescription $description() const;
74 // NOLINTEND
75
76public:
77 // vftables
78 // NOLINTBEGIN
79 MCNAPI static void** $vftable();
80 // NOLINTEND
81};
82
83} // namespace cereal
Definition ConstraintHandle.h:8
Definition SerializerContext.h:11
Definition StringConstraint.h:16
MCAPI void * $ctor(::cereal::StringConstraint const &)
MCAPI void * $ctor(::cereal::StringConstraint &&)
MCAPI::cereal::StringConstraint & regex(::std::string str, ::std::regex_constants::syntax_option_type flag)
MCAPI void validateValue(::std::string const &str, ::cereal::SerializerContext &context) const
static MCAPI void ** $vftable()
MCAPI::cereal::internal::ConstraintDescription $description() const
MCAPI StringConstraint(::cereal::StringConstraint &&)
static MCAPI ::std::string flagsToString(::std::regex_constants::syntax_option_type flags)
MCAPI StringConstraint(::cereal::StringConstraint const &)
Definition context.h:5
Definition Alias.h:14