| SOL9 2.0 Class: UPnPObject |
| SOL9 C++ Class Library | SOL9 Samples | SOL9 Tutorial | SOL9 FAQ | SOL9 ClassTree |
/*
* UPnPObject.h
* Copyright (c) 2011 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
// SOL9
// 2009/12/02
#pragma once
#include <sol/Object.h>
#include <sol/StringT.h>
#include <sol/com/ComObject.h>
#include <upnp.h>
#define ERR_INVALID_PARAMETER -1
namespace SOL {
class UPnPObject :public ComObject {
public:
UPnPObject(IDispatch* pDisp=NULL)
:ComObject(pDisp)
{
}
public:
~UPnPObject()
{
}
public:
virtual void display() { }
};
}
|