//----------------------------------------------------------- // Copyright Christian Arnault LAL-Orsay CNRS // arnault@lal.in2p3.fr // See the complete license in cmt_license.txt "http://www.cecill.info". //----------------------------------------------------------- #ifndef __cmt_cvs_h__ #define __cmt_cvs_h__ #include "cmt_system.h" class Cvs { public: static void tags (const CmtSystem::cmt_string_vector& arguments); static void branches (const cmt_string& module); static void subpackages (const cmt_string& module); static void checkout (const CmtSystem::cmt_string_vector& arguments); }; #endif