WSF
Macro.hpp
Go to the documentation of this file.
1// ****************************************************************************
2// CUI
3//
4// The Advanced Framework for Simulation, Integration, and Modeling (AFSIM)
5//
6// Copyright 2019 Infoscitex, a DCS Company. All rights reserved.
7//
8// The use, dissemination or disclosure of data in this file is subject to
9// limitation or restriction. See accompanying README and LICENSE for details.
10// ****************************************************************************
11
12#ifndef MACRO_HPP
13#define MACRO_HPP
14
15#include "Exportable.hpp"
16
17namespace usmtf
18{
21class Macro : public Exportable
22{
23public:
24 explicit Macro(const std::string& aKey, const std::string& aInputScaffold) noexcept;
25 InputBlock GetInputBlock() const override;
28 const std::string& GetKey() const noexcept;
29 const std::string GetPlaceholder() const noexcept;
30
31private:
32 const std::string mKey;
33 const std::string mInputScaffold;
34};
35} // namespace usmtf
36#endif
Definition Exportable.hpp:27
Definition InputBlock.hpp:39
InputBlock GetInputBlock() const override
Definition Macro.cpp:25
const std::string GetPlaceholder() const noexcept
Definition Macro.cpp:38
Macro(const std::string &aKey, const std::string &aInputScaffold) noexcept
Definition Macro.cpp:19
const std::string & GetKey() const noexcept
Definition Macro.cpp:33
Definition Acmid.cpp:17
Copyrights Multiple, All Rights Reserved