/** * @file PSSQueue.h * @brief application of multiple post semantic segmentation methods * @author Erik Rodner * @date 03/19/2009 */ #ifndef PSSQUEUEINCLUDE #define PSSQUEUEINCLUDE #ifdef NOVISUAL #include #else #include #endif namespace OBJREC { /** application of multiple post semantic segmentation methods */ class PSSQueue { protected: public: /** simple constructor */ PSSQueue(); /** simple destructor */ virtual ~PSSQueue(); }; } // namespace #endif