/* * DEBUG: section 16 Cache Manager API * */ #ifndef SQUID_MGR_INT_PARAM_H #define SQUID_MGR_INT_PARAM_H #include "ipc/forward.h" #include "mgr/forward.h" #include "mgr/QueryParam.h" #include namespace Mgr { class IntParam: public QueryParam { public: IntParam(); IntParam(const std::vector& anArray); virtual void pack(Ipc::TypedMsgHdr& msg) const; virtual void unpackValue(const Ipc::TypedMsgHdr& msg); const std::vector& value() const; private: std::vector array; }; } // namespace Mgr #endif /* SQUID_MGR_INT_PARAM_H */