//! *this file is freware. Use it at your own risk. //! @file void.hpp //! @author Dejan D. M. Milosavljevic //! @version 1.0 //! @date 2003 //! An empty class. //! *this file is freware. Use it at your own risk. #ifndef Dh_DDMRM_standard_empty_H_ #define Dh_DDMRM_standard_empty_H_ namespace S_DDMRM { namespace S_standard { class GC_void { public: GC_void(){} GC_void( GC_void const& P_original ){ } virtual ~GC_void(){} GC_void& operator=( GC_void const& P_original ){ return *this; } }; } } #endif