lib/rbgccxml.rb in rbgccxml-0.1.1 vs lib/rbgccxml.rb in rbgccxml-0.8

- old
+ new

@@ -19,13 +19,17 @@ autoload :File, "rbgccxml/nodes/file" autoload :Function, "rbgccxml/nodes/function" autoload :Method, "rbgccxml/nodes/method" autoload :Namespace, "rbgccxml/nodes/namespace" autoload :Struct, "rbgccxml/nodes/struct" + autoload :Enumeration, "rbgccxml/nodes/enumeration" + autoload :EnumValue, "rbgccxml/nodes/enum_value" # Type Management autoload :Type, "rbgccxml/nodes/type" autoload :FundamentalType, "rbgccxml/nodes/types/fundamental_type" autoload :PointerType, "rbgccxml/nodes/types/pointer_type" autoload :Typedef, "rbgccxml/nodes/types/typedef" + autoload :ReferenceType, "rbgccxml/nodes/types/reference_type" + autoload :CvQualifiedType, "rbgccxml/nodes/types/cv_qualified_type" end