#ifndef __UNIT_SLB__ #define __UNIT_SLB__ #include namespace Unit_SLB { class Table { public: Table(); ~Table(); static int class__index(lua_State *L); static int class__newindex(lua_State *L); private: Table(const Table&); Table& operator==(const Table&); }; class Checks { public: bool checkHybridBase(); }; } // end of unit SLB #endif