Changeset 322 in dev for trunk/abdev/BasicCompiler_Common/include/Source.h
- Timestamp:
- Sep 24, 2007, 2:58:10 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/include/Source.h
r308 r322 1 1 #pragma once 2 2 3 #include <map> 4 #include <string> 3 5 #include <vector> 4 #include <string>5 6 6 7 #include <windows.h> … … 202 203 void RemoveReturnLineUnderbar(); 203 204 205 void Initialize( const std::string &source ); 206 204 207 public: 205 208 BasicSource(){} … … 209 212 { 210 213 } 214 BasicSource( const std::string &source ) 215 { 216 Initialize( source ); 217 } 211 218 ~BasicSource(){} 212 219 … … 257 264 }; 258 265 typedef std::vector<BasicSource> BasicSources; 266 267 class SourceTemplate 268 { 269 std::string source; 270 public: 271 SourceTemplate( const std::string &filePath ); 272 ~SourceTemplate() 273 { 274 } 275 276 std::string GetResult( const std::map<std::string,std::string> &values ); 277 };
Note:
See TracChangeset
for help on using the changeset viewer.