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
10using namespace std;
15{
16public:
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
52private:
53
54 bool _result = false;
55 vector<string> _reasons;
56};
57
Helper to encapsulate the configuration result.
Definition ConfigurationResult.h:15