1 #ifndef LUAGLUE_PROPERTY_BASE_H_GUARD
2 #define LUAGLUE_PROPERTY_BASE_H_GUARD
3 
4 class LuaGlueBase;
5 
6 class LuaGluePropertyBase
7 {
8 	public:
LuaGluePropertyBase()9 		LuaGluePropertyBase() { }
~LuaGluePropertyBase()10 		virtual ~LuaGluePropertyBase() { }
11 		virtual bool glue(LuaGlueBase *luaGlue) = 0;
12 };
13 
14 #endif /* LUAGLUE_PROPERTY_BASE_H_GUARD */