Ignore:
Timestamp:
Oct 19, 2007, 2:51:36 AM (17 years ago)
Author:
dai_9181
Message:

基底クラスからインターフェイスメソッドを実装できるようにした。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/include/Method.h

    r351 r352  
    6161    virtual const CClass *GetInheritsClassPtr() const = 0;
    6262    virtual void SetInheritsClassPtr( const CClass *pInheritsClass ) = 0;
     63    virtual bool IsNotUse() const = 0;
     64    virtual void SetNotUseMark( bool isNotUse ) = 0;
    6365};
    6466
     
    6971    bool isConst;
    7072    const CClass *pInheritsClass;
     73
     74    // 他のインターフェイスへ実装が移った場合(基底クラスメソッドのインターフェイス実装)はこのフラグをオンにする
     75    bool isNotUse;
    7176
    7277    // XMLシリアライズ用
     
    8287        ar & BOOST_SERIALIZATION_NVP( isConst );
    8388        ar & boost::serialization::make_nvp("pInheritsClass", const_cast<CClass *&>(pInheritsClass));
     89        ar & BOOST_SERIALIZATION_NVP( isNotUse );
    8490    }
    8591
     
    9197        , isConst( isConst )
    9298        , pInheritsClass( pInheritsClass )
     99        , isNotUse( false )
    93100    {
    94101    }
     
    99106        , isConst( method.IsConst() )
    100107        , pInheritsClass( method.GetInheritsClassPtr() )
     108        , isNotUse( false )
    101109    {
    102110    }
     
    138146    {
    139147        this->pInheritsClass = pInheritsClass;
     148    }
     149    virtual bool IsNotUse() const
     150    {
     151        return isNotUse;
     152    }
     153    virtual void SetNotUseMark( bool isNotUse )
     154    {
     155        this->isNotUse = isNotUse;
    140156    }
    141157};
     
    187203    virtual const CClass *GetInheritsClassPtr() const{SetError();return NULL;}
    188204    virtual void SetInheritsClassPtr( const CClass *pInheritsClass ){SetError();}
     205    virtual bool IsNotUse() const
     206    {
     207        return false;
     208    }
     209    virtual void SetNotUseMark( bool isNotUse )
     210    {
     211        SetError();
     212    }
    189213};
    190214BOOST_CLASS_EXPORT( StaticMethod );
Note: See TracChangeset for help on using the changeset viewer.