source: dev/trunk/ab5.0/jenga/include/common/SourceTemplate.h@ 625

Last change on this file since 625 was 625, checked in by dai_9181, 16 years ago

・WindowInfoクラスをリファクタリング
・MdiInfoを単純配列からvectorに変更した。

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