?? servers.h
字號(hào):
/* LiMon-Server| Copyright (C) 2006 Marcelo Busico|| Author: Marcelo Busico marcelobusico@gmail.com|| This program is free software which I release under the GNU General Public| License. You may redistribute and/or modify this program under the terms| of that license as published by the Free Software Foundation; either| version 2 of the License, or (at your option) any later version.|| This program is distributed in the hope that it will be useful,| but WITHOUT ANY WARRANTY; without even the implied warranty of| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the| GNU General Public License for more details. Version 2 is in the| LICENSE.txt file in the top level directory of this distribution.| | To get a copy of the GNU General Puplic License, write to the Free Software| Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA*//* Cabecera del Estado de los Servidores */#ifndef SERVERS_H_#define SERVERS_H_class EstadoServidores{private: char cadenaEstadoWeb[2]; char cadenaEstadoMail[2]; char cadenaEstadoSSH[2]; char cadenaEstadoFTP[2]; char cadenaEstadoSamba[2];public: //Constructor por defecto EstadoServidores(); //Devuelve el Estado del Servidor Web - Boolean int getEstadoWeb(); //Devuelve el Estado del Servidor de Correo - Boolean int getEstadoMail(); //Devuelve el Estado del Servidor SSH - Boolean int getEstadoSSH(); //Devuelve el Estado del Servidor FTP - Boolean int getEstadoFTP(); //Devuelve el Estado del Servidor Samba - Boolean int getEstadoSamba();};#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -