-
Notifications
You must be signed in to change notification settings - Fork 0
/
Query.cpp
48 lines (41 loc) · 1.22 KB
/
Query.cpp
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
36
37
38
39
40
41
42
43
44
45
46
47
48
////////////////////////////////////////////////////////////////////////////////
//! \file Query.cpp
//! \brief The Query class definition.
//! \author Chris Oldwood
#include "Common.hpp"
#include "Query.hpp"
#include "Formats.hpp"
////////////////////////////////////////////////////////////////////////////////
//! Default constructor.
Query::Query()
: m_title()
, m_wmiClass()
, m_wmiProperty()
, m_filterProperty()
, m_filterValue()
, m_format(Formats::DEFAULT)
{
}
////////////////////////////////////////////////////////////////////////////////
//! Constructor.
Query::Query(const tstring& title, const tstring& wmiClass, const tstring& wmiProperty)
: m_title(title)
, m_wmiClass(wmiClass)
, m_wmiProperty(wmiProperty)
, m_filterProperty()
, m_filterValue()
, m_format(Formats::DEFAULT)
{
}
////////////////////////////////////////////////////////////////////////////////
//! Constructor.
Query::Query(const tstring& title, const tstring& wmiClass, const tstring& wmiProperty,
const tstring& filterProperty, const tstring& filterValue, const tstring& format)
: m_title(title)
, m_wmiClass(wmiClass)
, m_wmiProperty(wmiProperty)
, m_filterProperty(filterProperty)
, m_filterValue(filterValue)
, m_format(format)
{
}