Ignore:
Timestamp:
May 1, 2008, 11:03:14 PM (16 years ago)
Author:
dai_9181
Message:

ヘッダファイルを整理中

File:
1 edited

Legend:

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

    r518 r523  
    5757
    5858public:
    59     Procedure( const NamespaceScopes &namespaceScopes, const string &name, Kind kind, bool isCdecl )
     59    Procedure( const NamespaceScopes &namespaceScopes, const std::string &name, Kind kind, bool isCdecl )
    6060        : Symbol( namespaceScopes, name )
    6161        , kind( kind )
     
    114114{
    115115public:
    116     string _paramStr;
     116    std::string _paramStr;
    117117
    118118private:
     
    179179public:
    180180
    181     UserProc( const NamespaceScopes &namespaceScopes, const NamespaceScopesCollection &importedNamespaces, const string &name, Kind kind, bool isMacro, bool isCdecl, bool isExport )
     181    UserProc( const NamespaceScopes &namespaceScopes, const NamespaceScopesCollection &importedNamespaces, const std::string &name, Kind kind, bool isMacro, bool isCdecl, bool isExport )
    182182        : Procedure( namespaceScopes, name, kind, isCdecl )
    183183        , importedNamespaces( importedNamespaces )
     
    434434class DllProc : public Procedure, public Jenga::Common::ObjectInHashmap<DllProc>
    435435{
    436     string dllFileName;
    437     string alias;
     436    std::string dllFileName;
     437    std::string alias;
    438438    int lookupAddress;
    439439
     
    452452
    453453public:
    454     DllProc( const NamespaceScopes &namespaceScopes, const string &name, Kind kind, bool isCdecl, const string &dllFileName, const string &alias )
     454    DllProc( const NamespaceScopes &namespaceScopes, const std::string &name, Kind kind, bool isCdecl, const std::string &dllFileName, const std::string &alias )
    455455        : Procedure( namespaceScopes, name, kind, isCdecl )
    456456        , dllFileName( dllFileName )
     
    481481    }
    482482
    483     const string &GetDllFileName() const
     483    const std::string &GetDllFileName() const
    484484    {
    485485        return dllFileName;
    486486    }
    487     const string &GetAlias() const
     487    const std::string &GetAlias() const
    488488    {
    489489        return alias;
     
    542542};
    543543
    544 class ProcPointers : public vector<ProcPointer *>
     544class ProcPointers : public std::vector<ProcPointer *>
    545545{
    546546    // XMLシリアライズ用
     
    564564    }
    565565
    566     int Add( const string &typeExpression );
     566    int Add( const std::string &typeExpression );
    567567    void Clear();
    568568    void PullOutAll()
Note: See TracChangeset for help on using the changeset viewer.