#include <cmt_cvs.h>
List of all members.
Static Public Methods |
|
| void? | tags (const CmtSystem::cmt_string_vector &arguments) |
| ? |
At the second pass, the lines are really handled. |
| void? | branches (const cmt_string &module) |
| void? | subpackages (const cmt_string &module) |
| void? | checkout (const CmtSystem::cmt_string_vector &arguments) |
|
| ? |
Definition at line 2192 of file cmt_cvs.cxx. References CvsImplementation::branches(). Referenced by Cmt::do_cvsbranches(). 02193 {
02194 CvsImplementation cvs;
02195
02196 cvs.branches (module);
02197 }
|
|
| ? |
Definition at line 2206 of file cmt_cvs.cxx. References CvsImplementation::checkout(). Referenced by Cmt::do_checkout(). 02207 {
02208 CvsImplementation cvs;
02209
02210 cvs.checkout (arguments);
02211 }
|
|
| ? |
Definition at line 2199 of file cmt_cvs.cxx. References CvsImplementation::subpackages(). Referenced by Cmt::do_cvssubpackages(). 02200 {
02201 CvsImplementation cvs;
02202
02203 cvs.subpackages (module);
02204 }
|
|
| ? |
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 2185 of file cmt_cvs.cxx. References CvsImplementation::tags(). Referenced by Cmt::do_cvstags(). 02186 {
02187 CvsImplementation cvs;
02188
02189 cvs.tags (arguments);
02190 }
|