def.hpp
Go to the documentation of this file.
1
2#pragma once
3
5#include "meta/common/dep.hpp"
6
7namespace by {
8 class type;
9 typedef std::vector<type*> types;
10}
11
12#define BY_INIT_META(me) BY_INITIATOR(initMeta, { ::by::ttype<me>().init(); })
13
14// byeolMeta macro's sub-commands:
15// INIT META: it redirects to BY_INIT_META macro.
16#define __BY__DECL_INIT_META(ME) BY_INIT_META(ME)