Collaboration diagram for History:
Public Methods | |
void | clear () |
void | install (const cmt_string& line) |
bool | is_installed (const cmt_string& line) |
Static Public Methods | |
History& | instance () |
Private Methods | |
History () | |
Private Attributes | |
cmt_string | m_installed |
Definition at line 67 of file cmt_cvs.cxx.
|
Definition at line 1627 of file cmt_cvs.cxx. 01628 { 01629 } |
|
Definition at line 1605 of file cmt_cvs.cxx. Referenced by CvsImplementation::do_checkout(). 01606 { 01607 m_installed = ""; 01608 } |
|
Definition at line 1610 of file cmt_cvs.cxx. Referenced by RecursivePass2::filter(). 01611 { 01612 m_installed += "|"; 01613 m_installed += line; 01614 m_installed += "|"; 01615 } |
|
Definition at line 1599 of file cmt_cvs.cxx. Referenced by CvsImplementation::do_checkout(), RecursivePass2::filter(), and RecursivePass1::filter(). 01600 { 01601 static History h; 01602 return (h); 01603 } |
|
Definition at line 1617 of file cmt_cvs.cxx. Referenced by RecursivePass2::filter(), and RecursivePass1::filter(). 01618 { 01619 if (m_installed.find (line) != cmt_string::npos) 01620 { 01621 return (true); 01622 } 01623 01624 return (false); 01625 } |
|
Definition at line 78 of file cmt_cvs.cxx. |