-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCommon.hpp
35 lines (27 loc) · 1.04 KB
/
Common.hpp
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
32
33
34
35
////////////////////////////////////////////////////////////////////////////////
//! \file Common.hpp
//! \brief Wrapper to include the most common WMI library headers.
//! \author Chris Oldwood
// Check for previous inclusion
#ifndef WMI_COMMON_HPP
#define WMI_COMMON_HPP
#if _MSC_VER > 1000
#pragma once
#endif
////////////////////////////////////////////////////////////////////////////////
// Library documentation
//
//! \namespace WMI
//! \brief The Windows Management Instrumentation namespace.
//!
//! \mainpage Windows Management Instrumentation C++ Library
//! \section introduction Introduction
//! This library is a Wrapper Facade for using the WMI COM library.
////////////////////////////////////////////////////////////////////////////////
// Standard headers.
#include <Core/Common.hpp> // Core library common headers.
#include <WCL/Common.hpp> // Windows C++ library common headers.
////////////////////////////////////////////////////////////////////////////////
// Library headers.
#include "Types.hpp"
#endif // WMI_COMMON_HPP