#include <cmt_cvs.h>
Static Public Methods | |
void | tags (const CmtSystem::cmt_string_vector& arguments) |
At the second pass, the lines are really handled. More... | |
void | branches (const cmt_string& module) |
void | subpackages (const cmt_string& module) |
void | checkout (const CmtSystem::cmt_string_vector& arguments) |
|
Definition at line 1810 of file cmt_cvs.cxx. Referenced by Cmt::do_cvsbranches(). 01811 { 01812 CvsImplementation cvs; 01813 01814 cvs.branches (module); 01815 } |
|
Definition at line 1824 of file cmt_cvs.cxx. Referenced by Cmt::do_checkout(). 01825 { 01826 CvsImplementation cvs; 01827 01828 cvs.checkout (arguments); 01829 } |
|
Definition at line 1817 of file cmt_cvs.cxx. Referenced by Cmt::do_cvssubpackages(). 01818 { 01819 CvsImplementation cvs; 01820 01821 cvs.subpackages (module); 01822 } |
|
At the second pass, the lines are really handled. Thus the lines are stored into m_installed so as to avoid later on re-installation. Definition at line 1803 of file cmt_cvs.cxx. Referenced by Cmt::do_cvstags(). 01804 { 01805 CvsImplementation cvs; 01806 01807 cvs.tags (arguments); 01808 } |