source: dev/branches/egtra/ab5.0/jenga/include/common/SourceTemplate.h@ 812

Last change on this file since 812 was 812, checked in by イグトランス (egtra), 13 years ago

LexicalAnalyzer_Typedef.cppをcompiler-implへ移動。

File size: 453 bytes
Line 
1#include <map>
2#include <string>
3
4#pragma once
5
6namespace Jenga{
7namespace Common{
8
9
10class SourceTemplate
11{
12public:
13 class Values
14 : public std::map<std::string,std::string>
15 {
16 public:
17 void Insert( const std::string &tagName, const std::string &value );
18 };
19
20 SourceTemplate( const std::string &filePath );
21 std::string GetResult( const std::map<std::string,std::string> &values );
22
23private:
24 std::string source;
25};
26
27
28}}
Note: See TracBrowser for help on using the repository browser.