00001 /*************************************************************************** 00002 CLASS.h - description 00003 ------------------- 00004 00005 copyright : (C) 2012 by Vito Conforti 00006 email : conforti@iasfbo.inaf.it 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 00019 00031 #ifndef CLASS_H 00032 #define CLASS_H 00033 00034 #include "MyFirstClass.h" 00035 #include <otherCclass> 00036 00038 00047 class CLASS 00048 { 00049 public: 00050 00052 CLASS(); 00053 00055 ~CLASS(); 00056 00057 00065 virtual bool Init(int one, int two , char* three); 00066 00067 00068 00069 00070 private: 00071 int myAttribyte 1; 00072 00073 00074 00075 00076 }; 00077 #endif