Public Member Functions | |
ProjectReader () | |
const cmt_string & | get_project_name () const |
void | filter (const cmt_string &line) |
Private Attributes | |
cmt_string | m_project |
|
Definition at line 24 of file cmt_project.cxx.
00025 { 00026 } |
|
Reimplemented from Awk. Definition at line 33 of file cmt_project.cxx. References CmtSystem::cmt_string_vector, m_project, and CmtSystem::split().
00034 { 00035 CmtSystem::cmt_string_vector words; 00036 CmtSystem::split (line, " \t", words); 00037 if (words[0] == "project") 00038 { 00039 m_project = words[1]; 00040 } 00041 } |
|
Definition at line 28 of file cmt_project.cxx. References m_project. Referenced by ProjectFactory::create_project().
00029 { 00030 return (m_project); 00031 } |
|
Definition at line 44 of file cmt_project.cxx. Referenced by filter(), and get_project_name(). |