Ignore:
Timestamp:
May 2, 2008, 2:56:06 PM (16 years ago)
Author:
dai_9181
Message:

SourceTemplateクラスをLexicalAnalyzerクラスのインナークラスにした

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  
    66class LexicalAnalyzer
    77{
     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
    820public:
    921
  • trunk/ab5.0/abdev/BasicCompiler_Common/include/Source.h

    r523 r531  
    252252};
    253253typedef std::vector<BasicSource> BasicSources;
    254 
    255 class SourceTemplate
    256 {
    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.