Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 27, 2015, 11:08:26 PM (9 years ago)
Author:
landauf
Message:

moved Scope and ScopedSingletonManager from util to core.
TODO I had to disable two tests in ScopeTest.cc because now that it runs in the core library, there are too many singletons which get loaded in graphics scope (with too many dependencies). this should be fixed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core7/src/libraries/core/CorePrereqs.h

    r10392 r10407  
    7777namespace orxonox
    7878{
     79    namespace ScopeID
     80    {
     81        //!A list of available scopes for the Scope template.
     82        enum Value
     83        {
     84            Root,
     85            Graphics
     86        };
     87    }
     88
    7989    namespace XMLPort
    8090    {
     
    186196    class PathConfig;
    187197    struct ResourceInfo;
     198    template <ScopeID::Value>
     199    class Scope;
     200    template <class, ScopeID::Value>
     201    class ScopedSingleton;
    188202    class SettingsConfigFile;
    189203    template <class T>
Note: See TracChangeset for help on using the changeset viewer.