PropertyDefinitionConfigFormatter.h
Go to the documentation of this file.
1/*
2 * This file is part of ArmarX.
3 *
4 * Copyright (C) 2011-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5 *
6 * ArmarX is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * ArmarX is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * @package ArmarXCore::core
19 * @author Jan Issac (jan dot issac at gmx dot de)
20 * @date 2012
21 * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22 * GNU General Public License
23 */
24
25#pragma once
26
27#include <string>
28#include <vector>
29
31
32namespace armarx
33{
34 /**
35 * @ingroup properties
36 *
37 * @class PropertyDefinitionConfigFormatter
38 * @brief PropertyDefinitionConfigFormatter
39 */
41 {
42 public:
43 std::string formatDefinition(std::string name,
44 std::string description,
45 std::string min,
46 std::string max,
47 std::string default_,
48 std::string casesensitivity,
49 std::string requirement,
50 std::string reged,
51 std::vector<std::string> values,
52 std::string value) override;
53
54 std::string formatName(std::string name) override;
55 std::string formatDescription(std::string description) override;
56 std::string formatBounds(std::string min, std::string max) override;
57 std::string formatDefault(std::string default_) override;
58 std::string formatCaseSensitivity(std::string caseSensitivity) override;
59 std::string formatRequirement(std::string requirement) override;
60 std::string formatRegex(std::string regex) override;
61 std::string formatValue(std::string value) override;
62 std::string formatValues(std::vector<std::string> values) override;
63 std::string formatAttribute(std::string name, std::string details) override;
64
65 std::string formatHeader(std::string headerText) override;
66
67 std::string getFormat() override;
68 };
69} // namespace armarx
std::string formatDefault(std::string default_) override
std::string formatBounds(std::string min, std::string max) override
std::string formatAttribute(std::string name, std::string details) override
std::string formatRequirement(std::string requirement) override
std::string formatValues(std::vector< std::string > values) override
std::string formatHeader(std::string headerText) override
std::string formatDescription(std::string description) override
std::string formatCaseSensitivity(std::string caseSensitivity) override
std::string formatDefinition(std::string name, std::string description, std::string min, std::string max, std::string default_, std::string casesensitivity, std::string requirement, std::string reged, std::vector< std::string > values, std::string value) override
PropertyDefinitionFormatter is the base class for all formatters of PropertyDefinitions.
This file offers overloads of toIce() and fromIce() functions for STL container types.
std::vector< T > max(const std::vector< T > &v1, const std::vector< T > &v2)
std::vector< T > min(const std::vector< T > &v1, const std::vector< T > &v2)