/******************************************************************************
	Project: 	MicroMacro
	Author: 	SolarStrike Software
	URL:		www.solarstrike.net
	License:	Modified BSD (see license.txt)
******************************************************************************/

#ifndef MAP_LUA
#define MAP_LUA

    #define MAP_MODULE_NAME        "map"
 

    typedef struct lua_State lua_State;

    class Map_lua
    {
        protected:
            static int set(lua_State *);
            static int get(lua_State *);
			static int clear(lua_State *);

        public:
            static int regmod(lua_State *);
    };

#endif
