Changeset 32

Show
Ignore:
Timestamp:
11/28/04 14:12:46 (18 years ago)
Author:
wagi
Message:

Move constructor/destructor to private scope of the class.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freebob/src/cmhandler.h

    r15 r32  
    2929{ 
    3030public: 
    31     CMHandler(); 
    32     ~CMHandler(); 
    33  
    3431    FBReturnCodes initialize(); 
    3532    void shutdown(); 
     
    3734    static CMHandler* instance(); 
    3835private: 
     36    CMHandler(); 
     37    ~CMHandler(); 
     38 
    3939    static CMHandler* m_pInstance; 
    4040    Ieee1394Service* m_pIeee1394Service;