Changeset 531 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/include
- Timestamp:
- May 2, 2008, 2:56:06 PM (17 years ago)
- Location:
- trunk/ab5.0/abdev/BasicCompiler_Common/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/include/LexicalAnalyzer.h
r525 r531 6 6 class LexicalAnalyzer 7 7 { 8 class SourceTemplate 9 { 10 std::string source; 11 public: 12 SourceTemplate( const std::string &filePath ); 13 ~SourceTemplate() 14 { 15 } 16 17 std::string GetResult( const std::map<std::string,std::string> &values ); 18 }; 19 8 20 public: 9 21 -
trunk/ab5.0/abdev/BasicCompiler_Common/include/Source.h
r523 r531 252 252 }; 253 253 typedef std::vector<BasicSource> BasicSources; 254 255 class SourceTemplate256 {257 std::string source;258 public:259 SourceTemplate( const std::string &filePath );260 ~SourceTemplate()261 {262 }263 264 std::string GetResult( const std::map<std::string,std::string> &values );265 };
Note:
See TracChangeset
for help on using the changeset viewer.