Skip to content
Snippets Groups Projects
Commit 6c95f853 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Add Graph class

parent 48b1f273
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,6 @@
# define HPP_MANIPULATION_GRAPH_FWD_HH
#include <hpp/util/pointer.hh>
#include <hpp/util/config.h>
namespace hpp {
namespace manipulation {
......
// Copyright (c) 2014, LAAS-CNRS
// Authors: Joseph Mirabel (joseph.mirabel@laas.fr)
//
// This file is part of hpp-manipulation.
// hpp-manipulation is free software: you can redistribute it
// and/or modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation, either version
// 3 of the License, or (at your option) any later version.
//
// hpp-manipulation is distributed in the hope that it will be
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Lesser Public License for more details. You should have
// received a copy of the GNU Lesser General Public License along with
// hpp-manipulation. If not, see <http://www.gnu.org/licenses/>.
#ifndef HPP_MANIPULATION_GRAPHGRAPH_HH
# define HPP_MANIPULATION_GRAPHGRAPH_HH
#include "hpp/manipulation/fwd.hh"
#include "hpp/manipulation/graph/fwd.hh"
namespace hpp {
namespace manipulation {
namespace graph {
/// Description of the constraint graph
/// This class contains a graph representing a robot with several
/// end-effectors.
class HPP_MANIPULATION_DLLAPI Graph
{
public:
private:
/// This list contains a node selector for each end-effector.
set::list < NodeSelectorPtr_t > nodeSelectors_;
/// A set of constraints that will always be used, for example
/// stability constraints.
ConstraintSetPtr_t constraints_;
}
} // namespace graph
} // namespace manipulation
} // namespace hpp
#endif // HPP_MANIPULATION_GRAPHGRAPH_HH
......@@ -20,6 +20,7 @@
#include <hpp/core/constraints-set.hh>
#include "hpp/manipulation/fwd.hh"
#include "hpp/manipulation/graph/fwd.hh"
namespace hpp {
namespace manipulation {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment