SOL9 2.0 Class: UPnPCollection

 SOL9 C++ Class Library  SOL9 Samples  SOL9 Tutorial  SOL9 FAQ  SOL9 ClassTree 

Source code

/*
 * 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;
    }
};

}

Last modified: 1 Feb 2012

Copyright (c) 2009-2012 Antillia.com ALL RIGHTS RESERVED.