Documentation for OpenFLUID 2.2.1
DataItemUtils.hpp
Go to the documentation of this file.
1 /*
2 
3  This file is part of OpenFLUID software
4  Copyright(c) 2021-2026, INRAE
5 
6 
7  == GNU General Public License Usage ==
8 
9  OpenFLUID is free software: you can redistribute it and/or modify
10  it under the terms of the GNU General Public License as published by
11  the Free Software Foundation, either version 3 of the License, or
12  (at your option) any later version.
13 
14  OpenFLUID is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  GNU General Public License for more details.
18 
19  You should have received a copy of the GNU General Public License
20  along with OpenFLUID. If not, see <http://www.gnu.org/licenses/>.
21 
22 
23  == Other Usage ==
24 
25  Other Usage means a use of OpenFLUID that is inconsistent with the GPL
26  license, and requires a written agreement between You and INRA.
27  Licensees for Other Usage of OpenFLUID may use this file in accordance
28  with the terms contained in the written agreement between You and INRA.
29 
30 */
31 
32 
33 /**
34  @file DataItemUtils.hpp
35 
36  @author Armel THÖNI <armel.thoni@inrae.fr>
37 */
38 
39 #pragma once
40 
41 
42 #include <string>
43 
44 #include <openfluid/dllexport.hpp>
45 
46 
47 namespace openfluid { namespace ware {
48 
49 // contains minimal functions used by signature data item constructors
50 
51 
52 /**
53  Transmits a given variable name to container without changing type
54  @param[in] VO the string to use
55  @param[in] V the string to populate
56  @param[in] T the type to change (ignored)
57  @return true always
58 */
59 inline bool OPENFLUID_API identityExtractor(const std::string& VO, std::string& V, openfluid::core::Value::Type& /*T*/)
60 {
61  V = VO;
62  return true;
63 }
64 
65 
66 // =====================================================================
67 // =====================================================================
68 
69 
70 /**
71  Checks whether a string is empty
72  @param[in] Str the string to check
73  @return true if the string is not empty
74 */
75 inline bool OPENFLUID_API isNonEmpty(const std::string& Str)
76 {
77  return Str.length() > 0;
78 }
79 
80 
81 } } // namespaces
Type
Definition: Value.hpp:66
#define OPENFLUID_API
Definition: dllexport.hpp:86
bool OPENFLUID_API isNonEmpty(const std::string &Str)
Definition: DataItemUtils.hpp:75
bool OPENFLUID_API identityExtractor(const std::string &VO, std::string &V, openfluid::core::Value::Type &)
Definition: DataItemUtils.hpp:59
Definition: ApplicationException.hpp:47