00001 #ifndef _ETEST_H 00002 #define _ETEST_H 00003 00004 #include "SocketException.h" 00005 #include "FileException.h" 00006 00007 00008 class ETest 00009 { 00010 public: 00011 ETest() throw(FileException); 00012 ~ETest(); 00013 00014 void read() throw(SocketException); 00015 void write() throw(FileException); 00016 void check() throw(SocketException,FileException); 00017 00018 private: 00019 ETest(const ETest& ) {} // copy constructor 00020 ETest& operator=(const ETest& ) { return *this; } // assignment operator 00021 00022 }; 00023 00024 00025 00026 00027 #endif // _ETEST_H
|
|