#ifndef TChannelMap_hxx #define TChannelMap_hxx #include #include "IGeometryId.hxx" namespace COMET { class IChannelMap; } /// Abstract base class for other channel maps class COMET::IChannelMap { friend class IGeometryDatabase; protected: IChannelMap(); public: virtual ~IChannelMap() = 0; }; #endif