LeviLamina
Loading...
Searching...
No Matches
IntOption.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/options/option_types/Option.h"
7
8class IntOption : public ::Option {
9public:
10 // member variables
11 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 IntOption& operator=(IntOption const&);
24 IntOption(IntOption const&);
25 IntOption();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 0
31 virtual ~IntOption() /*override*/ = default;
32
33 // vIndex: 1
34 virtual void save(::std::vector<::std::pair<::std::string, ::std::string>>&) /*override*/;
35
36 // vIndex: 4
37 virtual void load(::std::string const&) /*override*/;
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49
50 // NOLINTEND
51};
Definition IntOption.h:8
Definition Option.h:17
Definition Alias.h:14