[EMAIL PROTECTED] wrote:
> namespace Application
> {
>      class MyClass
>      {
>          public:
>              
> enum MyNewEnum
>              {
>                   FIRST_ITEM,
>                   
> SECOND_ITEM
>              };
>      }
> }
>
> my typesystem.txt contains
>
> <namespace-
> type name="Application" />
> <enum-type name="MyClass::MyNewEnum"/>
>   

Hi,

You should specify the fully qualified name of the enum type, like you 
would if referring to it in code:

    <enum-type name="Application::MyClass::MyNewEnum" />

-- Eskil


_______________________________________________
Qt-jambi-interest mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest

Reply via email to