00001 // only compile if USE_SHMEMDEV is defined 00002 #ifdef USE_SHMEMDEV 00003 00004 // this code only works on linux 00005 #ifdef linux 00006 00007 #ifndef __CLUSTEREVENTBUFFERRENDERINGSIDE_H__ 00008 #define __CLUSTEREVENTBUFFERRENDERINGSIDE_H__ 00009 00010 #include "ClusterEventBuffer.H" 00011 00012 namespace IS3D { 00013 00014 class ClusterEventBufferRenderingSide : public ClusterEventBuffer 00015 { 00016 public: 00017 virtual bool init(); 00018 }; 00019 00020 } 00021 00022 #endif 00023 00024 #endif 00025 00026 #endif