Ignore:
Timestamp:
Jul 13, 2007, 4:55:22 PM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

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

    r209 r210  
    418418    DllProc *pNextData;
    419419
    420     DllProc( const NamespaceScopes &namespaceScopes, const string &name, Kind kind, bool isCdecl, const string &dllFileName, const string &alias ):
    421       Procedure( namespaceScopes, name, kind, isCdecl ),
    422       dllFileName( dllFileName ),
    423       alias( alias ),
    424       lookupAddress( 0 ),
    425       pNextData( NULL )
     420    DllProc( const NamespaceScopes &namespaceScopes, const string &name, Kind kind, bool isCdecl, const string &dllFileName, const string &alias )
     421        : Procedure( namespaceScopes, name, kind, isCdecl )
     422        , dllFileName( dllFileName )
     423        , alias( alias )
     424        , lookupAddress( 0 )
     425        , pNextData( NULL )
     426    {
     427    }
     428    DllProc()
    426429    {
    427430    }
Note: See TracChangeset for help on using the changeset viewer.