|
Last change
on this file since 635 was 625, checked in by dai_9181, 17 years ago |
|
・WindowInfoクラスをリファクタリング
・MdiInfoを単純配列からvectorに変更した。
|
|
File size:
416 bytes
|
| Line | |
|---|
| 1 | #pragma once
|
|---|
| 2 |
|
|---|
| 3 | namespace Jenga{
|
|---|
| 4 | namespace Common{
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 | class SourceTemplate
|
|---|
| 8 | {
|
|---|
| 9 | public:
|
|---|
| 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 |
|
|---|
| 20 | private:
|
|---|
| 21 | std::string source;
|
|---|
| 22 | };
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 | }}
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.