WB-Toolbox  6.0.0
ASimulinkToolboxforWholeBodyControl
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
CentroidalTotalMomentumMatrix.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2018 Istituto Italiano di Tecnologia (IIT)
3  * All rights reserved.
4  *
5  * This software may be modified and distributed under the terms of the
6  * GNU Lesser General Public License v2.1 or any later version.
7  */
8 
9 #ifndef WBT_CentroidalTotalMomentumMatrix_H
10 #define WBT_CentroidalTotalMomentumMatrix_H
11 
12 #include "WBToolbox/Base/WBBlock.h"
13 
14 #include <memory>
15 #include <string>
16 
17 namespace wbt {
18  namespace block {
20  } // namespace block
21 } // namespace wbt
22 
23 namespace blockfactory {
24  namespace core {
25  class BlockInformation;
26  } // namespace core
27 } // namespace blockfactory
28 
34 {
35 private:
36  class impl;
37  std::unique_ptr<impl> pImpl;
38 
39 public:
42  bool configureSizeAndPorts(blockfactory::core::BlockInformation* blockInfo) override;
43  bool initialize(blockfactory::core::BlockInformation* blockInfo) override;
44  bool terminate(const blockfactory::core::BlockInformation* blockInfo) override;
45  bool output(const blockfactory::core::BlockInformation* blockInfo) override;
46 };
47 
48 #endif // WBT_CentroidalTotalMomentumMatrix_H
wbt
Definition: Configuration.h:17
CentroidalTotalMomentumMatrix
@ CentroidalTotalMomentumMatrix
Definition: CentroidalTotalMomentumMatrix.cpp:43
wbt::block::CentroidalTotalMomentumMatrix::pImpl
std::unique_ptr< impl > pImpl
Definition: CentroidalTotalMomentumMatrix.h:36
wbt::block::CentroidalTotalMomentumMatrix::~CentroidalTotalMomentumMatrix
~CentroidalTotalMomentumMatrix() override
wbt::block::CentroidalTotalMomentumMatrix::initialize
bool initialize(blockfactory::core::BlockInformation *blockInfo) override
Definition: CentroidalTotalMomentumMatrix.cpp:106
wbt::block::CentroidalTotalMomentumMatrix::configureSizeAndPorts
bool configureSizeAndPorts(blockfactory::core::BlockInformation *blockInfo) override
Definition: CentroidalTotalMomentumMatrix.cpp:64
wbt::block::CentroidalTotalMomentumMatrix::output
bool output(const blockfactory::core::BlockInformation *blockInfo) override
Definition: CentroidalTotalMomentumMatrix.cpp:136
blockfactory
Definition: WBBlock.h:16
wbt::block::CentroidalTotalMomentumMatrix::terminate
bool terminate(const blockfactory::core::BlockInformation *blockInfo) override
Definition: CentroidalTotalMomentumMatrix.cpp:131
WBBlock.h
wbt::block::CentroidalTotalMomentumMatrix
The wbt::CentroidalTotalMomentumMatrix class.
Definition: CentroidalTotalMomentumMatrix.h:33
wbt::block::CentroidalTotalMomentumMatrix::impl
Definition: CentroidalTotalMomentumMatrix.cpp:49
wbt::block::CentroidalTotalMomentumMatrix::CentroidalTotalMomentumMatrix
CentroidalTotalMomentumMatrix()
Definition: CentroidalTotalMomentumMatrix.cpp:58
wbt::base::WBBlock
Extension of blockfactory::core::Block for simplifying the development of whole-body blocks.
Definition: WBBlock.h:62