#ifndef _COM_MULTIQUERY_HPP_ #define _COM_MULTIQUERY_HPP_ #ifndef _COMMON_ARRAY_HPP_ #include #endif #ifndef _COM_OLE2_HPP_ #include #endif #ifndef _COM_OBJIDL_HPP_ #include #endif class MultiQuery : public Array { public: MultiQuery(void); virtual ~MultiQuery(); void size(DWORD size); DWORD size(void)const; private: }; inline MultiQuery::MultiQuery(void) { } inline MultiQuery::~MultiQuery() { } inline DWORD MultiQuery::size(void)const { return Array::size(); } #endif