OROCHI
 
Loading...
Searching...
No Matches
GxToolGuiProperty.h
Go to the documentation of this file.
1//===========================================================================
10//===========================================================================
11#pragma once
12
13#if GX_DEVELOP
14GX_CORE_NAMESPACE_BEGIN()
15
16//===========================================================================
18//===========================================================================
19class GxToolGuiProperty : public GxToolClassProperty
20{
21 //-----------------------------------------------------------
23 //-----------------------------------------------------------
25public:
26 // RTTI定義
27 GX_RTTI_CLASS_NAME_ICON( GxToolGuiProperty, GxToolClassProperty, "GUIプロパティ", GxRtti::ICON_TYPE::CORE)
28 // ClassBaseReference継承クラス用禁止宣言
29 GX_PROHIBIT_CLASS_BASE_REFERENCE(GxToolGuiProperty)
30
31
32 //-----------------------------------------------------------
34 //-----------------------------------------------------------
36
38 GxToolGuiProperty( void ) {}
39
41 //-----------------------------------------------------------
43 //-----------------------------------------------------------
45protected:
47 void update( void ) override;
48
50};
51
52GX_CORE_NAMESPACE_END()
53#endif // GX_DEVELOP
54
#define GX_PROHIBIT_CLASS_BASE_REFERENCE(__CLASS__)
GxClassBaseReference継承の禁止宣言(new以外の生成禁止 + コピー禁止)
Definition GxBase.h:244