Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 11, 2013, 9:33:11 PM (11 years ago)
Author:
landauf
Message:

removed mutual friend declarations between Identifier and IdentifierManager

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core6/src/libraries/core/class/Identifier.h

    r9640 r9641  
    106106    class _CoreExport Identifier
    107107    {
    108         friend class IdentifierManager;
    109 
    110108        public:
     109            Identifier();
     110            Identifier(const Identifier& identifier); // don't copy
     111            virtual ~Identifier();
     112
    111113            /// Returns the name of the class the Identifier belongs to.
    112114            inline const std::string& getName() const { return this->name_; }
     
    209211
    210212        protected:
    211             Identifier();
    212             Identifier(const Identifier& identifier); // don't copy
    213             virtual ~Identifier();
    214 
    215213            virtual void createSuperFunctionCaller() const = 0;
    216214
Note: See TracChangeset for help on using the changeset viewer.