Changeset 510 in dev for trunk/ab5.0/abdev/ab_common


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

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

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

Legend:

Unmodified
Added
Removed
  • 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>
Note: See TracChangeset for help on using the changeset viewer.