TypeEnumere* TypeEnumere::Construire(Opencxx::TypeInfo& informationType,
                                           Opencxx::Environment* environement)
      {

        
        if (informationType.WhatIs() == EnumType)
        {
          Ptree* spec ;
          informationType.IsEnum(spec) ;
          
          return new TypeEnumere(spec->Cdr()->Cdr()->Car()->Cdr()->Car()) ;
          
          
        }
        else
          
          return NULL ;
          
      }