Visioscan Set SDK Libraries
1.0.14
Visioscan Set SDK Help documentation file for C++ and C++/CLI
Loading...
Searching...
No Matches
ConfigurationResult.h
1
#pragma once
2
#include <string>
3
#include <vector>
4
#ifdef STARFLEETTOOLBOX_EXPORTS
5
#define CONFRES __declspec(dllexport)
6
#else
7
#define CONFRES __declspec(dllimport)
8
#endif
9
10
using namespace
std;
14
class
CONFRES
ConfigurationResult
15
{
16
public
:
20
ConfigurationResult
();
21
26
ConfigurationResult
(
bool
pResult);
27
32
void
SetResult(
bool
pResult);
33
38
bool
GetResult();
39
44
vector<string> GetReasons();
45
50
void
PushReason(
string
reason);
51
52
private
:
53
54
bool
_result =
false
;
55
vector<string> _reasons;
56
};
57
ConfigurationResult
Helper to encapsulate the configuration result.
Definition
ConfigurationResult.h:15
StarfleetToolbox
ConfigurationResult.h
Generated by
1.9.7