WSF
InputBlockProperty.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// This might get templated, depends on needs.
13
14#ifndef INPUTBLOCKPROPERTY_HPP
15#define INPUTBLOCKPROPERTY_HPP
16
17#include "usmtf_export.h"
18
19#include <string>
20
21namespace usmtf
22{
35class USMTF_EXPORT InputBlockProperty
36{
37public:
38 InputBlockProperty(const std::string& aName, const std::string& aValue, const std::string& aDelimeter = " = ") noexcept;
39 const std::string& GetProperty() const noexcept;
40
41private:
42 const std::string mProp;
43};
44} // namespace usmtf
45
46#endif
const std::string & GetProperty() const noexcept
Definition InputBlockProperty.cpp:21
InputBlockProperty(const std::string &aName, const std::string &aValue, const std::string &aDelimeter=" = ") noexcept
Definition InputBlockProperty.cpp:16
Definition Acmid.cpp:17
Copyrights Multiple, All Rights Reserved