fakir/src/types.hpp

14 lines
191 B
C++
Raw Normal View History

#ifndef fk_TYPES_HPP
#define fk_TYPES_HPP
#include "commons.hpp"
#define TYPES(G) G(TYPE_INT), G(TYPE_FLOAT), G(TYPE_BOOL), G(TYPE_STRING)
namespace fk
{
FK_ENUM(Type, TYPES);
}
#endif