diff --git a/Executables/cableidx.cxx b/Executables/cableidx.cxx index 6b42bf2..9c5c979 100644 --- a/Executables/cableidx.cxx +++ b/Executables/cableidx.cxx @@ -174,6 +174,14 @@ int DetermineClassesToWrap(std::ofstream& fout, const Namespace* cns, const char << "{" << c->GetQualifiedName() << "} {" << td->GetName() << "} {" << group << "}\n"; } + const EnumerationType* et = EnumerationType::SafeDownCast(td->GetType()); + if(et) + { + const Enumeration* e = et->GetEnumeration(); + fout + << "{" << e->GetQualifiedName() << "} {" + << td->GetName() << "} {" << group << "}\n"; + } } } }