vcs/cvsservice/cvsform.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 * Copyright (C) 2003 by Mario Scalas * 00003 * mario.scalas@libero.it * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 ***************************************************************************/ 00011 00012 #ifndef CVSFORM_H 00013 #define CVSFORM_H 00014 00015 #include "cvsformbase.h" 00016 00021 class CvsForm : public CvsFormBase 00022 { 00023 Q_OBJECT 00024 public: 00025 CvsForm( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); 00026 virtual ~CvsForm(); 00027 00028 QString module() const; 00029 QString vendor() const; 00030 QString message() const; 00031 QString release() const; 00032 QString location() const; 00033 QString cvsRsh() const; 00034 bool mustInitRoot() const; 00035 }; 00036 00037 #endif