我在C ++中实现了一个反射引擎,我可以构造类型并将它们添加到反射数据库中,如下所示:
TypeInfo* spark_math_Vector2_type = new TypeInfo();
spark_math_Vector2_type->setName("Vector2");
spark_math_Vector2_type->setFullName("::spark::math::Vector2");
spark_math_Vector2_type->setHash(typeid(spark::math::Vector2).hash_code());
spark_math_Vector2_type->setSize(sizeof(spark::math::Vector2));
Reflection::getInstance().registerType(spark_math_Vector2_type);
但是,我现在想要自动生成类型数据库。为此,我需要一种方法来获取在C ++头文件中创建的所有类型,以及类型的构造函数/方法/字段。
我找到gccxml,但它有各种缺点(太慢等)。是否有其他现有工具/框架可用?或者也许有更好的方法来做到这一点? (我真的不想写一个解析器......)
答案 0 :(得分:0)
基本上你的选择是: