forked from chrisoldwood/WMI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWin32_OperatingSystem.cpp
More file actions
31 lines (23 loc) · 886 Bytes
/
Win32_OperatingSystem.cpp
File metadata and controls
31 lines (23 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
////////////////////////////////////////////////////////////////////////////////
//! \file Win32_OperatingSystem.cpp
//! \brief The Win32_OperatingSystem class definition.
//! \author Chris Oldwood
#include "Common.hpp"
#include "Win32_OperatingSystem.hpp"
namespace WMI
{
//! The WMI class name this type mirrors.
const tchar* Win32_OperatingSystem::WMI_CLASS_NAME = TXT("Win32_OperatingSystem");
////////////////////////////////////////////////////////////////////////////////
//! Construction from the underlying COM object and connection.
Win32_OperatingSystem::Win32_OperatingSystem(IWbemClassObjectPtr object, const Connection& connection)
: TypedObject<Win32_OperatingSystem>(object, connection)
{
}
////////////////////////////////////////////////////////////////////////////////
//! Destructor.
Win32_OperatingSystem::~Win32_OperatingSystem()
{
}
//namespace WMI
}