ADTF
Loading...
Searching...
No Matches
macro_utils.h
Go to the documentation of this file.
1
7
8#pragma once
9
10#include <a_utils/core/result.h>
11#include <string>
12#include <vector>
13
14namespace adtf
15{
16namespace system
17{
18namespace yak
19{
20
22{
23 std::string strName;
24 std::string strValue;
25 bool bIsEnvironmentVariable = false;
26};
27
28std::vector<tResolvedMacro> get_resolved_macros();
29
30} // END of namespace yak.
31
32using yak::tResolvedMacro;
33using yak::get_resolved_macros;
34
35} // END of namespace system.
36} // END of namespace adtf.
Namespace for all functionality of the ADTF System SDK provided since v3.24.
Definition macro_utils.h:19
Namespace for the ADTF System SDK.
Definition adtf_service.h:14
Namespace for all functionality provided by ADTF and its SDKs.
Definition adtf_client_connector.h:14
Definition macro_utils.h:22