Changeset 510 in dev


Ignore:
Timestamp:
Apr 30, 2008, 10:22:12 AM (16 years ago)
Author:
dai_9181
Message:

Prototypeクラスをab_commonプロジェクトに移動した。

Location:
trunk/ab5.0/abdev
Files:
7 edited
1 moved

Legend:

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

    r424 r510  
    33#include <option.h>
    44#include <Program.h>
    5 #include <Prototype.h>
    65#include <Type.h>
    76#include <Method.h>
  • trunk/ab5.0/abdev/BasicCompiler_Common/include/Member.h

    r409 r510  
    66#include <option.h>
    77#include <Program.h>
    8 #include <Prototype.h>
    98
    109using namespace std;
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/ObjectModule.cpp

    r509 r510  
    4646#include <abdev/ab_common/include/NamespaceSupporter.h>
    4747#include <abdev/ab_common/include/Symbol.h>
     48#include <abdev/ab_common/include/Prototype.h>
    4849
    4950using namespace ActiveBasic::Common::Lexical;
  • trunk/ab5.0/abdev/ab_common/ab_common.vcproj

    r509 r510  
    325325                </File>
    326326                <File
     327                    RelativePath=".\include\Prototype.h"
     328                    >
     329                </File>
     330                <File
    327331                    RelativePath=".\include\Symbol.h"
    328332                    >
  • trunk/ab5.0/abdev/ab_common/include/Prototype.h

    r509 r510  
    11#pragma once
    22
    3 #include <string>
    4 #include <vector>
     3namespace ActiveBasic{ namespace Common{ namespace Lexical{
    54
    6 using namespace std;
    75
    86class Prototype : public Symbol
     
    3230public:
    3331
    34     Prototype( const NamespaceScopes &namespaceScopes, const string &name )
     32    Prototype( const NamespaceScopes &namespaceScopes, const std::string &name )
    3533        : Symbol( namespaceScopes, name )
    3634        , isUsing( false )
     
    112110    }
    113111};
     112
     113
     114}}}
  • trunk/ab5.0/abdev/ab_common/stdafx.h

    r509 r510  
    3636#include <NamespaceSupporter.h>
    3737#include <Symbol.h>
     38#include <Prototype.h>
  • trunk/ab5.0/abdev/compiler_x86/compiler_x86.vcproj

    r509 r510  
    15291529                    </File>
    15301530                    <File
    1531                         RelativePath="..\BasicCompiler_Common\include\Prototype.h"
    1532                         >
    1533                     </File>
    1534                     <File
    15351531                        RelativePath="..\BasicCompiler_Common\include\Source.h"
    15361532                        >
  • trunk/ab5.0/abdev/compiler_x86/stdafx.h

    r509 r510  
    3535#include <abdev/ab_common/include/NamespaceSupporter.h>
    3636#include <abdev/ab_common/include/Symbol.h>
     37#include <abdev/ab_common/include/Prototype.h>
    3738
    3839using namespace ActiveBasic::Common::Lexical;
Note: See TracChangeset for help on using the changeset viewer.