Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 31, 2011, 11:45:56 AM (13 years ago)
Author:
landauf
Message:

added new output level "message" for output directed to the user

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/libraries/util/output/OutputDefinitions.h

    r8799 r8805  
    4545        static const OutputLevel none             = 0x0000;
    4646
    47         static const OutputLevel debug_output     = 0x0001;
    48         static const OutputLevel user_error       = 0x0002;
    49         static const OutputLevel user_warning     = 0x0004;
    50         static const OutputLevel user_status      = 0x0008;
    51         static const OutputLevel user_info        = 0x0010;
    52         static const OutputLevel internal_error   = 0x0020;
    53         static const OutputLevel internal_warning = 0x0040;
    54         static const OutputLevel internal_status  = 0x0080;
    55         static const OutputLevel internal_info    = 0x0100;
    56         static const OutputLevel verbose          = 0x0200;
    57         static const OutputLevel verbose_more     = 0x0400;
    58         static const OutputLevel verbose_ultra    = 0x0800;
     47        static const OutputLevel message          = 0x0001;
     48        static const OutputLevel debug_output     = 0x0002;
     49        static const OutputLevel user_error       = 0x0004;
     50        static const OutputLevel user_warning     = 0x0008;
     51        static const OutputLevel user_status      = 0x0010;
     52        static const OutputLevel user_info        = 0x0020;
     53        static const OutputLevel internal_error   = 0x0040;
     54        static const OutputLevel internal_warning = 0x0080;
     55        static const OutputLevel internal_status  = 0x0100;
     56        static const OutputLevel internal_info    = 0x0200;
     57        static const OutputLevel verbose          = 0x0400;
     58        static const OutputLevel verbose_more     = 0x0800;
     59        static const OutputLevel verbose_ultra    = 0x1000;
    5960    }
    6061
     
    7374            REGISTER_OUTPUT_CONTEXT(undefined);
    7475
    75             REGISTER_OUTPUT_CONTEXT(test1);
    76             REGISTER_OUTPUT_CONTEXT(test2);
    77             REGISTER_OUTPUT_CONTEXT(output);
     76            REGISTER_OUTPUT_CONTEXT(ogre);
     77            REGISTER_OUTPUT_CONTEXT(cegui);
    7878            REGISTER_OUTPUT_CONTEXT(lua);
    7979            REGISTER_OUTPUT_CONTEXT(tcl);
     80            REGISTER_OUTPUT_CONTEXT(identifier);
     81            REGISTER_OUTPUT_CONTEXT(object_list);
     82            REGISTER_OUTPUT_CONTEXT(super);
     83            REGISTER_OUTPUT_CONTEXT(language);
     84            REGISTER_OUTPUT_CONTEXT(output);
     85            REGISTER_OUTPUT_CONTEXT(commands);
     86            REGISTER_OUTPUT_CONTEXT(executor);
     87            REGISTER_OUTPUT_CONTEXT(input);
     88            REGISTER_OUTPUT_CONTEXT(events);
     89            REGISTER_OUTPUT_CONTEXT(config);
    8090        }
    8191    }
Note: See TracChangeset for help on using the changeset viewer.