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/TypeDef.h

    r509 r523  
    66#include <Type.h>
    77
    8 using namespace std;
    9 
    108class TypeDefCollection;
    119
     
    1412    friend TypeDefCollection;
    1513
    16     string baseName;
     14    std::string baseName;
    1715    Type baseType;
    1816
     
    3028
    3129public:
    32     TypeDef( const NamespaceScopes &namespaceScopes, const string &name, const string &baseName, int nowLine );
     30    TypeDef( const NamespaceScopes &namespaceScopes, const std::string &name, const std::string &baseName, int nowLine );
    3331    TypeDef()
    3432    {
     
    3836    }
    3937
    40     const string &GetBaseName() const
     38    const std::string &GetBaseName() const
    4139    {
    4240        return baseName;
     
    6563    ~TypeDefCollection();
    6664
    67     void Add( const NamespaceScopes &namespaceScopes, const string &name, const string &baseName, int nowLine );
    68     int GetIndex( const NamespaceScopes &namespaceScopes, const string &name ) const;
    69     int GetIndex( const string &fullName ) const;
     65    void Add( const NamespaceScopes &namespaceScopes, const std::string &name, const std::string &baseName, int nowLine );
     66    int GetIndex( const NamespaceScopes &namespaceScopes, const std::string &name ) const;
     67    int GetIndex( const std::string &fullName ) const;
    7068
    7169private:
    72     void Add( const NamespaceScopes &namespaceScopes, const string &expression, int nowLine );
     70    void Add( const NamespaceScopes &namespaceScopes, const std::string &expression, int nowLine );
    7371public:
    7472    void CollectTypeDefs();
Note: See TracChangeset for help on using the changeset viewer.