Equalizer 1.0
|
00001 00002 /* Copyright (c) 2009-2011, Stefan Eilemann <eile@equalizergraphics.com> 00003 * 2009, Maxim Makhinya 00004 * 00005 * This library is free software; you can redistribute it and/or modify it under 00006 * the terms of the GNU Lesser General Public License version 2.1 as published 00007 * by the Free Software Foundation. 00008 * 00009 * This library is distributed in the hope that it will be useful, but WITHOUT 00010 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00011 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 00012 * details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public License 00015 * along with this library; if not, write to the Free Software Foundation, Inc., 00016 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 00017 */ 00018 00019 #ifndef EQ_SYSTEM_PIPE_H 00020 #define EQ_SYSTEM_PIPE_H 00021 00022 #include <eq/error.h> // enum 00023 #include <eq/api.h> 00024 #include <string> 00025 00026 namespace eq 00027 { 00028 class Pipe; 00029 00038 class SystemPipe 00039 { 00040 public: 00042 EQ_API SystemPipe( Pipe* parent ); 00043 00045 EQ_API virtual ~SystemPipe( ); 00046 00050 EQ_API virtual bool configInit( ) = 0; 00051 00053 EQ_API virtual void configExit( ) = 0; 00055 00057 Pipe* getPipe() { return _pipe; } 00058 00060 const Pipe* getPipe() const { return _pipe; } 00061 00063 EQ_API co::base::Error getError() const; 00064 00065 protected: 00073 EQ_API void setError( const uint32_t error ); 00075 00076 private: 00078 Pipe* const _pipe; 00079 00080 struct Private; 00081 Private* _private; // placeholder for binary-compatible changes 00082 }; 00083 } 00084 00085 #endif // EQ_SYSTEM_PIPE_H 00086