File indexing completed on 2025-01-18 10:10:07
0001 #ifndef CPYCPPYY_REFLEX_H
0002 #define CPYCPPYY_REFLEX_H
0003
0004
0005
0006
0007
0008 namespace Cppyy {
0009
0010 namespace Reflex {
0011
0012 typedef int RequestId_t;
0013
0014 const RequestId_t IS_NAMESPACE = 1;
0015 const RequestId_t IS_AGGREGATE = 2;
0016
0017 const RequestId_t OFFSET = 16;
0018 const RequestId_t RETURN_TYPE = 17;
0019 const RequestId_t TYPE = 18;
0020
0021 typedef int FormatId_t;
0022 const FormatId_t OPTIMAL = 1;
0023 const FormatId_t AS_TYPE = 2;
0024 const FormatId_t AS_STRING = 3;
0025
0026 }
0027
0028 }
0029
0030 #endif