Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 6, 2015, 2:45:20 PM (9 years ago)
Author:
landauf
Message:

statically initialized instances may contain a type. currently not used.

File:
1 edited

Legend:

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

    r10522 r10530  
    3737    {
    3838        public:
    39             StaticallyInitializedInstance();
     39            typedef int Type;
     40
     41            StaticallyInitializedInstance(Type type);
    4042            virtual ~StaticallyInitializedInstance();
    4143
     
    4345            virtual void unload() = 0;
    4446
     47            inline Type getType() const
     48                { return this->type_; }
     49
    4550        private:
    4651            ModuleInstance* module_;
     52            Type type_;
    4753    };
    4854}
Note: See TracChangeset for help on using the changeset viewer.