質問編集履歴
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,7 +38,7 @@
|
|
38
38
|
|
39
39
|
T m_value;
|
40
40
|
|
41
|
-
public: // コントラ
|
41
|
+
public: // コンストラクタ
|
42
42
|
|
43
43
|
none_options_property() = default;
|
44
44
|
|
@@ -60,7 +60,7 @@
|
|
60
60
|
|
61
61
|
class get_options_property : virtual public none_options_property<T> {
|
62
62
|
|
63
|
-
public: // コントラ
|
63
|
+
public: // コンストラクタ
|
64
64
|
|
65
65
|
using none_options_property<T>::none_options_property;
|
66
66
|
|
@@ -82,7 +82,7 @@
|
|
82
82
|
|
83
83
|
class set_options_property : virtual public none_options_property<T> {
|
84
84
|
|
85
|
-
public: // コントラ
|
85
|
+
public: // コンストラクタ
|
86
86
|
|
87
87
|
using none_options_property<T>::none_options_property;
|
88
88
|
|
@@ -110,9 +110,9 @@
|
|
110
110
|
|
111
111
|
template <class T>
|
112
112
|
|
113
|
-
class full_options_property final : get_options_property<T>, public set_options_property<T> {
|
113
|
+
class full_options_property final : public get_options_property<T>, public set_options_property<T> {
|
114
114
|
|
115
|
-
public: // コントラ
|
115
|
+
public: // コンストラクタ
|
116
116
|
|
117
117
|
full_options_property() : none_options_property<T>(), get_options_property<T>(), set_options_property<T>() {}
|
118
118
|
|