LoggerPC.h
Go to the documentation of this file.00001 /* ======================================================================== 00002 * Copyright (C) 2005 Graz University of Technology 00003 * 00004 * This framework is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published by 00006 * the Free Software Foundation; either version 2 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * This framework is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this framework; if not, write to the Free Software 00016 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00017 * 00018 * For further information please contact Dieter Schmalstieg under 00019 * <schmalstieg@icg.tu-graz.ac.at> or write to Dieter Schmalstieg, 00020 * Graz University of Technology, Inffeldgasse 16a, A8010 Graz, 00021 * Austria. 00022 * ======================================================================== 00023 * PROJECT: OpenVideo 00024 * ======================================================================== */ 00031 /* ======================================================================= */ 00032 00033 #ifndef _LOGGERPC_H_ 00034 #define _LOGGERPC_H_ 00035 #include <openvideo/LoggerBase.h> 00036 00037 namespace openvideo{ 00038 00042 class LoggerPC : public LoggerBase 00043 { 00044 public: 00045 00049 LoggerPC(); 00050 00054 virtual ~LoggerPC(); 00055 00059 virtual void log(const char* message); 00060 00061 protected: 00062 00063 private: 00064 00065 };// class 00066 }//namespace 00067 #endif//_LOGGERPC_H_ 00068 //======================================================================== 00069 // End of LoggerPC.h 00070 //======================================================================== 00071 // Local Variables: 00072 // mode: c++ 00073 // c-basic-offset: 4 00074 // eval: (c-set-offset 'substatement-open 0) 00075 // eval: (c-set-offset 'case-label '+) 00076 // eval: (c-set-offset 'statement 'c-lineup-runin-statements) 00077 // eval: (setq indent-tabs-mode nil) 00078 // End: 00079 //========================================================================
