- Timestamp:
- Apr 30, 2008, 10:22:12 AM (17 years ago)
- 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 3 3 #include <option.h> 4 4 #include <Program.h> 5 #include <Prototype.h>6 5 #include <Type.h> 7 6 #include <Method.h> -
trunk/ab5.0/abdev/BasicCompiler_Common/include/Member.h
r409 r510 6 6 #include <option.h> 7 7 #include <Program.h> 8 #include <Prototype.h>9 8 10 9 using namespace std; -
trunk/ab5.0/abdev/BasicCompiler_Common/src/ObjectModule.cpp
r509 r510 46 46 #include <abdev/ab_common/include/NamespaceSupporter.h> 47 47 #include <abdev/ab_common/include/Symbol.h> 48 #include <abdev/ab_common/include/Prototype.h> 48 49 49 50 using namespace ActiveBasic::Common::Lexical; -
trunk/ab5.0/abdev/ab_common/ab_common.vcproj
r509 r510 325 325 </File> 326 326 <File 327 RelativePath=".\include\Prototype.h" 328 > 329 </File> 330 <File 327 331 RelativePath=".\include\Symbol.h" 328 332 > -
trunk/ab5.0/abdev/ab_common/include/Prototype.h
r509 r510 1 1 #pragma once 2 2 3 #include <string> 4 #include <vector> 3 namespace ActiveBasic{ namespace Common{ namespace Lexical{ 5 4 6 using namespace std;7 5 8 6 class Prototype : public Symbol … … 32 30 public: 33 31 34 Prototype( const NamespaceScopes &namespaceScopes, const st ring &name )32 Prototype( const NamespaceScopes &namespaceScopes, const std::string &name ) 35 33 : Symbol( namespaceScopes, name ) 36 34 , isUsing( false ) … … 112 110 } 113 111 }; 112 113 114 }}} -
trunk/ab5.0/abdev/ab_common/stdafx.h
r509 r510 36 36 #include <NamespaceSupporter.h> 37 37 #include <Symbol.h> 38 #include <Prototype.h> -
trunk/ab5.0/abdev/compiler_x86/compiler_x86.vcproj
r509 r510 1529 1529 </File> 1530 1530 <File 1531 RelativePath="..\BasicCompiler_Common\include\Prototype.h"1532 >1533 </File>1534 <File1535 1531 RelativePath="..\BasicCompiler_Common\include\Source.h" 1536 1532 > -
trunk/ab5.0/abdev/compiler_x86/stdafx.h
r509 r510 35 35 #include <abdev/ab_common/include/NamespaceSupporter.h> 36 36 #include <abdev/ab_common/include/Symbol.h> 37 #include <abdev/ab_common/include/Prototype.h> 37 38 38 39 using namespace ActiveBasic::Common::Lexical;
Note:
See TracChangeset
for help on using the changeset viewer.