| SOL9 2.0 Class: UPnPCollection |
| SOL9 C++ Class Library | SOL9 Samples | SOL9 Tutorial | SOL9 FAQ | SOL9 ClassTree |
/*
* UPnPCollection.h
* Copyright (c) 2011 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
// SOL9
// 2009/12/02
#pragma once
//#include <sol/upnp/UPnPObject.h>
#include <sol/com/ComObjectSet.h>
#include <sol/com/EnumVariant.h>
#include <upnp.h>
namespace SOL {
class UPnPCollection :public ComObjectSet {
public:
UPnPCollection(IDispatch* pDisp=NULL)
:ComObjectSet(pDisp)
{
}
public:
virtual void display() { }
public:
virtual long getCount()
{
return 0;
}
};
}
|