blob: 164d7a37b6b466189823628141ed06d9dc167dc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <pch.hpp>
#include "paramChecker.h"
#include "xmlObjectLoader.h"
ParamChecker::ParamChecker(const xmlpp::Element * p) :
SourceObject(p),
message(p, "message", false, "Check failed"),
group(p, "group", false, "default"),
present(p->get_attribute_value("present"))
{
}
ParamChecker::~ParamChecker()
{
}
|