Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3242


Ignore:
Timestamp:
Jun 28, 2009, 5:35:50 PM (15 years ago)
Author:
landauf
Message:

Added a using declaration to ExecutorMember which hopefully solves your problem, Oli.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/netp6/src/core/Executor.h

    r3196 r3242  
    243243            virtual ~ExecutorMember() {}
    244244
     245            using Executor::operator();
     246
    245247            inline void operator()(T* object) const
    246248                { (*((FunctorMember<T>*)this->functor_))(object, this->defaultValue_[0], this->defaultValue_[1], this->defaultValue_[2], this->defaultValue_[3], this->defaultValue_[4]); }
     
    275277                { ((FunctorMember<T>*)this->functor_)->setObject(object); }
    276278
     279            using Executor::parse;
     280
    277281            bool parse(T* object, const std::string& params, const std::string& delimiter = " ") const
    278282            {
Note: See TracChangeset for help on using the changeset viewer.