Ignore:
Timestamp:
Oct 6, 2007, 12:56:37 AM (17 years ago)
Author:
dai_9181
Message:

Implements修飾子を作り始めた

Location:
trunk/abdev/BasicCompiler_Common/include
Files:
2 edited

Legend:

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

    r325 r340  
    294294    bool IsInheritsInterface( const CClass *pInterfaceClass ) const;
    295295
    296     //継承させる
     296    // クラス継承
    297297    bool Inherits( const char *inheritNames, int nowLine );
    298298    bool InheritsClass( const CClass &inheritsClass, const Types &actualTypeParameters, int nowLine );
    299299    bool InheritsInterface( const CClass &inheritsClass, int nowLine );
     300
     301    // インターフェイス実装
     302    bool Implements( const char *interfaceNames, int nowLine );
    300303
    301304    //メンバ、メソッドの追加
  • trunk/abdev/BasicCompiler_Common/include/ver.h

    r338 r340  
    66// バージョン付加文字列
    77#ifdef _AMD64_
    8 #define VER_INFO        "(x64) (rev.343)"
     8#define VER_INFO        "(x64) (rev.351)"
    99#else
    10 #define VER_INFO        "(rev.343)"
     10#define VER_INFO        "(rev.351)"
    1111#endif
Note: See TracChangeset for help on using the changeset viewer.