00001 //----------------------------------------------------------- 00002 // Copyright Christian Arnault LAL-Orsay CNRS 00003 // arnault@lal.in2p3.fr 00004 // See the complete license in cmt_license.txt "http://www.cecill.info". 00005 //----------------------------------------------------------- 00006 00007 #ifndef __cmt_cvs_h__ 00008 #define __cmt_cvs_h__ 00009 00010 #include "cmt_system.h" 00011 00012 class Cvs 00013 { 00014 public: 00015 00016 static void tags (const CmtSystem::cmt_string_vector& arguments); 00017 static void branches (const cmt_string& module); 00018 static void subpackages (const cmt_string& module); 00019 static void subprojects (const cmt_string& module); 00020 static void checkout (const CmtSystem::cmt_string_vector& arguments); 00021 00022 }; 00023 00024 #endif