Changeset 91 in dev for BasicCompiler_Common/Procedure.h


Ignore:
Timestamp:
Apr 7, 2007, 10:07:26 PM (17 years ago)
Author:
dai_9181
Message:

ログ機構(Smoothie::Logger)を導入。
動的型情報生成において、未使用クラスの登録は行わないようにした。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/Procedure.h

    r90 r91  
    126126    }
    127127
     128    string GetFullName() const
     129    {
     130        if( HasParentClass() ){
     131            return (string)GetParentClass().name + "." + GetName();
     132        }
     133
     134        return GetName();
     135    }
     136
    128137    bool IsMacro() const
    129138    {
     
    211220    DWORD beginOpAddress;
    212221    DWORD endOpAddress;
     222    int GetCodeSize() const
     223    {
     224        return endOpAddress - beginOpAddress;
     225    }
    213226
    214227    // ローカル変数
Note: See TracChangeset for help on using the changeset viewer.