Changeset 510 in dev for trunk/ab5.0/abdev/ab_common/include
- Timestamp:
- Apr 30, 2008, 10:22:12 AM (17 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
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 }}}
Note:
See TracChangeset
for help on using the changeset viewer.