| SOL9 2.0 Class: WbemQueryProperties |
| SOL9 C++ Class Library | SOL9 Samples | SOL9 Tutorial | SOL9 FAQ | SOL9 ClassTree |
/*
* WbemQueryProperties.h
* Copyright (c) 2012 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
// SOL9
// 2010/02/24
#pragma once
#include <sol/wmi/SWbemQueryProperties.h>
namespace SOL {
class WbemQueryProperties :public SWbemQueryProperties {
public:
/**
* Constructor
*/
WbemQueryProperties()
:SWbemQueryProperties()
{
}
public:
/**
* Destructor
*/
~WbemQueryProperties()
{
}
};
}
|