Public Methods |
|
? | ProjectReader () |
const cmt_string &? | get_project_name () const |
void? | filter (const cmt_string &line) |
Private Attributes |
|
cmt_string? | m_project |
|
? |
Definition at line 23 of file cmt_project.cxx. 00024 { 00025 } |
|
? |
Reimplemented from Awk. Definition at line 32 of file cmt_project.cxx. References m_project, and CmtSystem::split(). 00033 { 00034 CmtSystem::cmt_string_vector words; 00035 CmtSystem::split (line, " \t", words); 00036 if (words[0] == "project") 00037 { 00038 m_project = words[1]; 00039 } 00040 } |
|
? |
Definition at line 27 of file cmt_project.cxx. Referenced by ProjectFactory::create_project(). 00028 {
00029 return (m_project);
00030 }
|
|
? |
Definition at line 43 of file cmt_project.cxx. Referenced by filter(). |