IntEnum.h
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2012-2016, High Performance Humanoid Technologies (H2T),
5  * Karlsruhe Institute of Technology (KIT), all rights reserved.
6  *
7  * ArmarX is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  * ArmarX is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <http://www.gnu.org/licenses/>.
18  *
19  * @author Fabian Peller-Konrad (fabian dot peller-konrad at kit dot edu)
20  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
21  * GNU General Public License
22  */
23 
24 #pragma once
25 
26 #include <map>
27 #include <string>
28 
31 
33 {
34  class IntEnum;
35  typedef std::shared_ptr<IntEnum> IntEnumSerializerPtr;
36 
37  class IntEnum : public detail::SpecializedGeneratorBase<type::IntEnum, IntEnum>
38  {
39  public:
40  // constructors
41  IntEnum(const type::IntEnum&);
42  virtual ~IntEnum() = default;
43 
44  // virtual implementations
45  std::pair<std::vector<std::pair<std::string, std::string>>, bool>
46  getCtorInitializers(const std::string& name) const final;
47  CppBlockPtr getResetHardBlock(const std::string& cppAccessor) const final;
48  CppBlockPtr getResetSoftBlock(const std::string& cppAccessor) const final;
49  CppBlockPtr getWriteTypeBlock(const std::string& typeAccessor,
50  const std::string& cppAccessor,
51  const Path&,
52  std::string& variantAccessor) const final;
53  CppBlockPtr getWriteBlock(const std::string& cppAccessor,
54  const Path&,
55  std::string& variantAccessor) const final;
56  CppBlockPtr getReadBlock(const std::string& cppAccessor,
57  const std::string& variantAccessor) const final;
58  };
59 } // namespace armarx::aron::codegenerator::cpp::generator
armarx::aron::codegenerator::cpp::generator::IntEnum::getResetHardBlock
CppBlockPtr getResetHardBlock(const std::string &cppAccessor) const final
Definition: IntEnum.cpp:57
armarx::aron::codegenerator::cpp::generator::IntEnum::getReadBlock
CppBlockPtr getReadBlock(const std::string &cppAccessor, const std::string &variantAccessor) const final
Definition: IntEnum.cpp:107
armarx::aron::codegenerator::cpp::generator::IntEnumSerializerPtr
std::shared_ptr< IntEnum > IntEnumSerializerPtr
Definition: IntEnum.h:34
IntEnum.h
armarx::aron::codegenerator::cpp::generator::IntEnum::getCtorInitializers
std::pair< std::vector< std::pair< std::string, std::string > >, bool > getCtorInitializers(const std::string &name) const final
Definition: IntEnum.cpp:43
armarx::aron::codegenerator::cpp::generator::IntEnum::~IntEnum
virtual ~IntEnum()=default
armarx::aron::codegenerator::cpp::generator::IntEnum::getResetSoftBlock
CppBlockPtr getResetSoftBlock(const std::string &cppAccessor) const final
Definition: IntEnum.cpp:49
armarx::CppBlockPtr
std::shared_ptr< CppBlock > CppBlockPtr
Definition: CppBlock.h:35
SpecializedGenerator.h
armarx::aron::type::IntEnum
The IntEnum class.
Definition: IntEnum.h:42
armarx::aron::codegenerator::cpp::generator::IntEnum::getWriteTypeBlock
CppBlockPtr getWriteTypeBlock(const std::string &typeAccessor, const std::string &cppAccessor, const Path &, std::string &variantAccessor) const final
Definition: IntEnum.cpp:72
armarx::aron::Path
The Path class.
Definition: Path.h:36
armarx::aron::codegenerator::cpp::generator::IntEnum::IntEnum
IntEnum(const type::IntEnum &)
Definition: IntEnum.cpp:32
armarx::aron::codegenerator::cpp::generator::IntEnum
Definition: IntEnum.h:37
armarx::aron::codegenerator::cpp::generator::detail::SpecializedGeneratorBase
Definition: SpecializedGenerator.h:35
armarx::aron::codegenerator::cpp::generator::IntEnum::getWriteBlock
CppBlockPtr getWriteBlock(const std::string &cppAccessor, const Path &, std::string &variantAccessor) const final
Definition: IntEnum.cpp:90
armarx::aron::codegenerator::cpp::generator
Definition: AnyObject.cpp:29