#ifndef HEPHISTOCOLUMN_H #define HEPHISTOCOLUMN_H // ---------------------------------------------------------------------- // // HistoColumn.h - class declaration for a Histoscope Column Internals // // You must include "histoscope.h" before including this file ZM_BEGIN_NAMESPACE( zmht ) /* namespace zmht { */ class HistoColInternals : public ColInternals { public: HistoColInternals(hsColId id) : id_(id) { }; virtual ~HistoColInternals() { }; hsColId id() { return id_; }; private: hsColId id_; }; /* HistoColInternals */ ZM_END_NAMESPACE( zmht ) /* } // namespace zmht */ #endif // HEPHISTOCOLUMN_H