Ignore:
Timestamp:
Mar 19, 2011, 9:13:12 PM (13 years ago)
Author:
イグトランス (egtra)
Message:

ab_commonにおいて、各クラスのコピー禁止を明確化、ならびにコピー可能なものにムーブコンストラクタ・ムーブ代入演算子を追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/egtra/ab5.0/jenga/include/common/Hashmap.h

    r808 r816  
    154154class ObjectInHashmap
    155155{
     156protected:
     157    ObjectInHashmap()
     158    {
     159    }
     160    ~ObjectInHashmap()
     161    {
     162    }
     163
    156164public:
    157 
    158     ObjectInHashmap()
    159     {
    160     }
    161     ~ObjectInHashmap()
    162     {
    163     }
    164 
    165165    virtual const std::string &GetKeyName() const = 0;
    166166    virtual bool IsDuplication( const T *value ) const
Note: See TracChangeset for help on using the changeset viewer.