Initial
This commit is contained in:
38
com/multiqi.hpp
Normal file
38
com/multiqi.hpp
Normal file
@@ -0,0 +1,38 @@
|
||||
#ifndef _COM_MULTIQUERY_HPP_
|
||||
#define _COM_MULTIQUERY_HPP_
|
||||
#ifndef _COMMON_ARRAY_HPP_
|
||||
#include <common/array.hpp>
|
||||
#endif
|
||||
#ifndef _COM_OLE2_HPP_
|
||||
#include <com/ole2.hpp>
|
||||
#endif
|
||||
#ifndef _COM_OBJIDL_HPP_
|
||||
#include <com/objidl.hpp>
|
||||
#endif
|
||||
|
||||
class MultiQuery : public Array<MULTI_QI>
|
||||
{
|
||||
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<MULTI_QI>::size();
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user