richLog.hpp
Go to the documentation of this file.
1
2#pragma once
3
4#include "core/common/dep.hpp"
6
7namespace by {
8 class arithmeticObj;
9 class visitInfo;
10 class node;
11 typedef tstr<node> str;
12 class src;
13 class modifier;
14 class baseFunc;
15 class param;
16 class params;
17
18 _nout strWrap __convert__(const node& it);
19 _nout strWrap __convert__(const node* it);
20 _nout strWrap __convert__(const str& it);
21 _nout strWrap __convert__(const arithmeticObj& it);
22 _nout strWrap __convert__(const arithmeticObj* it);
23 _nout strWrap __convert__(const src& it);
24 _nout strWrap __convert__(const src* it);
25 _nout strWrap __convert__(const baseFunc& it);
26 _nout strWrap __convert__(const baseFunc* it);
27 _nout strWrap __convert__(const param& it);
28 _nout strWrap __convert__(const param* it);
29 _nout strWrap __convert__(const params& it);
30 _nout strWrap __convert__(const params* it);
31 _nout strWrap __convert__(const visitInfo& it);
32 _nout strWrap __convert__(const visitInfo* it);
33 _nout strWrap __convert__(const modifier& it);
34 _nout strWrap __convert__(const modifier* it);
35} // namespace by