Skip to content
Snippets Groups Projects
Unverified Commit 196db94f authored by Guilhem Saurel's avatar Guilhem Saurel Committed by GitHub
Browse files

Merge pull request #39 from nim65s/devel

Packaging for the v3.3.0 Release
parents b3ce2e4a 8c879124
No related branches found
No related tags found
No related merge requests found
Pipeline #3307 passed
Showing
with 25 additions and 247 deletions
# Copyright 2010, Olivier Stasse, JRL, CNRS/AIST # Copyright 2010, Olivier Stasse, JRL, CNRS/AIST
#
# This file is part of dynamic-graph.
# dynamic-graph 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.
#
# dynamic-graph 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
# dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
CMAKE_MINIMUM_REQUIRED(VERSION 2.6) CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
...@@ -19,7 +6,6 @@ INCLUDE(cmake/base.cmake) ...@@ -19,7 +6,6 @@ INCLUDE(cmake/base.cmake)
INCLUDE(cmake/boost.cmake) INCLUDE(cmake/boost.cmake)
INCLUDE(cmake/eigen.cmake) INCLUDE(cmake/eigen.cmake)
INCLUDE(cmake/pthread.cmake) INCLUDE(cmake/pthread.cmake)
INCLUDE(cmake/cpack.cmake)
SET(PROJECT_ORG stack-of-tasks) SET(PROJECT_ORG stack-of-tasks)
SET(PROJECT_NAME dynamic-graph) SET(PROJECT_NAME dynamic-graph)
...@@ -66,4 +52,3 @@ ADD_SUBDIRECTORY(include/${PROJECT_NAME}) ...@@ -66,4 +52,3 @@ ADD_SUBDIRECTORY(include/${PROJECT_NAME})
ADD_SUBDIRECTORY(tests) ADD_SUBDIRECTORY(tests)
SETUP_PROJECT_FINALIZE() SETUP_PROJECT_FINALIZE()
SETUP_PROJECT_CPACK()
Subproject commit d128cc2965a7878dc38acf8f4395e1899aa505cb Subproject commit 1d9aeca25e970d2d967fd5be0fb93fe961db121b
...@@ -6,17 +6,6 @@ ...@@ -6,17 +6,6 @@
* *
* CNRS/AIST * CNRS/AIST
* *
* This file is part of dynamic-graph.
* dynamic-graph 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.
* dynamic-graph 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 Lesser General Public License for more details. You should
* have received a copy of the GNU Lesser General Public License along
* with dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
*/ */
/** /**
...@@ -31,7 +20,7 @@ The installation instruction are given at \subpage subp_installation. ...@@ -31,7 +20,7 @@ The installation instruction are given at \subpage subp_installation.
The software graph structure is detailled in \subpage p_graph The software graph structure is detailled in \subpage p_graph
For debugging your entities detailed instructions are given in \subpage debug For debugging your entities detailed instructions are given in \subpage debug
For citing the software in your research work please refer to \subpage subp_references For citing the software in your research work please refer to \subpage subp_references
......
...@@ -2,18 +2,6 @@ ...@@ -2,18 +2,6 @@
// Copyright 2010, François Bleibel, Olivier Stasse, JRL, CNRS/AIST // Copyright 2010, François Bleibel, Olivier Stasse, JRL, CNRS/AIST
// Thomas Moulard, Nicolas Mansard LAAS-CNRS // Thomas Moulard, Nicolas Mansard LAAS-CNRS
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
//
// dynamic-graph 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
// dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef DYNAMIC_GRAPH_ALL_COMMANDS_H #ifndef DYNAMIC_GRAPH_ALL_COMMANDS_H
# define DYNAMIC_GRAPH_ALL_COMMANDS_H # define DYNAMIC_GRAPH_ALL_COMMANDS_H
......
...@@ -2,18 +2,6 @@ ...@@ -2,18 +2,6 @@
// Copyright 2010, François Bleibel, Thomas Moulard, Olivier Stasse, // Copyright 2010, François Bleibel, Thomas Moulard, Olivier Stasse,
// JRL, CNRS/AIST. // JRL, CNRS/AIST.
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
//
// dynamic-graph 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
// dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef DYNAMIC_GRAPH_ALL_SIGNALS_H #ifndef DYNAMIC_GRAPH_ALL_SIGNALS_H
# define DYNAMIC_GRAPH_ALL_SIGNALS_H # define DYNAMIC_GRAPH_ALL_SIGNALS_H
......
...@@ -3,17 +3,6 @@ ...@@ -3,17 +3,6 @@
// //
// Author: Nicolas Mansard // Author: Nicolas Mansard
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
// dynamic-graph 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 Lesser General Public License for more details. You should
// have received a copy of the GNU Lesser General Public License along
// with dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef __dg_command_bind_h__ #ifndef __dg_command_bind_h__
#define __dg_command_bind_h__ #define __dg_command_bind_h__
......
...@@ -3,17 +3,6 @@ ...@@ -3,17 +3,6 @@
// //
// Author: Nicolas Mansard // Author: Nicolas Mansard
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
// dynamic-graph 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 Lesser General Public License for more details. You should
// have received a copy of the GNU Lesser General Public License along
// with dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef __dg_command_direct_getter_h__ #ifndef __dg_command_direct_getter_h__
#define __dg_command_direct_getter_h__ #define __dg_command_direct_getter_h__
......
...@@ -3,17 +3,6 @@ ...@@ -3,17 +3,6 @@
// //
// Author: Nicolas Mansard // Author: Nicolas Mansard
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
// dynamic-graph 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 Lesser General Public License for more details. You should
// have received a copy of the GNU Lesser General Public License along
// with dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef __dg_command_direct_setter_h__ #ifndef __dg_command_direct_setter_h__
#define __dg_command_direct_setter_h__ #define __dg_command_direct_setter_h__
......
...@@ -3,17 +3,6 @@ ...@@ -3,17 +3,6 @@
// //
// Author: Florent Lamiraux // Author: Florent Lamiraux
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
// dynamic-graph 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 Lesser General Public License for more details. You should
// have received a copy of the GNU Lesser General Public License along
// with dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef DYNAMIC_GRAPH_COMMAND_GETTER_H #ifndef DYNAMIC_GRAPH_COMMAND_GETTER_H
#define DYNAMIC_GRAPH_COMMAND_GETTER_H #define DYNAMIC_GRAPH_COMMAND_GETTER_H
...@@ -72,4 +61,3 @@ namespace dynamicgraph { ...@@ -72,4 +61,3 @@ namespace dynamicgraph {
#include "dynamic-graph/command-getter.t.cpp" #include "dynamic-graph/command-getter.t.cpp"
#endif //DYNAMIC_GRAPH_COMMAND_GETTER_H #endif //DYNAMIC_GRAPH_COMMAND_GETTER_H
...@@ -3,17 +3,6 @@ ...@@ -3,17 +3,6 @@
// //
// Author: Florent Lamiraux // Author: Florent Lamiraux
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
// dynamic-graph 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 Lesser General Public License for more details. You should
// have received a copy of the GNU Lesser General Public License along
// with dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef DYNAMIC_GRAPH_COMMAND_GETTER_T_CPP #ifndef DYNAMIC_GRAPH_COMMAND_GETTER_T_CPP
#define DYNAMIC_GRAPH_COMMAND_GETTER_T_CPP #define DYNAMIC_GRAPH_COMMAND_GETTER_T_CPP
......
...@@ -3,17 +3,6 @@ ...@@ -3,17 +3,6 @@
// //
// Author: Florent Lamiraux // Author: Florent Lamiraux
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
// dynamic-graph 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 Lesser General Public License for more details. You should
// have received a copy of the GNU Lesser General Public License along
// with dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef DYNAMIC_GRAPH_COMMAND_SETTER_H #ifndef DYNAMIC_GRAPH_COMMAND_SETTER_H
#define DYNAMIC_GRAPH_COMMAND_SETTER_H #define DYNAMIC_GRAPH_COMMAND_SETTER_H
...@@ -72,4 +61,3 @@ namespace dynamicgraph { ...@@ -72,4 +61,3 @@ namespace dynamicgraph {
#include "dynamic-graph/command-setter.t.cpp" #include "dynamic-graph/command-setter.t.cpp"
#endif //DYNAMIC_GRAPH_COMMAND_SETTER_H #endif //DYNAMIC_GRAPH_COMMAND_SETTER_H
...@@ -3,17 +3,6 @@ ...@@ -3,17 +3,6 @@
// //
// Author: Florent Lamiraux // Author: Florent Lamiraux
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
// dynamic-graph 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 Lesser General Public License for more details. You should
// have received a copy of the GNU Lesser General Public License along
// with dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef DYNAMIC_GRAPH_COMMAND_SETTER_T_CPP #ifndef DYNAMIC_GRAPH_COMMAND_SETTER_T_CPP
#define DYNAMIC_GRAPH_COMMAND_SETTER_T_CPP #define DYNAMIC_GRAPH_COMMAND_SETTER_T_CPP
...@@ -26,7 +15,7 @@ namespace dynamicgraph { ...@@ -26,7 +15,7 @@ namespace dynamicgraph {
class Entity; class Entity;
namespace command { namespace command {
// //
// Template specialization: bool // Template specialization: bool
// //
template <class E> template <class E>
...@@ -64,7 +53,7 @@ namespace dynamicgraph { ...@@ -64,7 +53,7 @@ namespace dynamicgraph {
return Value(); return Value();
} }
// //
// Template specialization: unsigned // Template specialization: unsigned
// //
template <class E> template <class E>
...@@ -102,7 +91,7 @@ namespace dynamicgraph { ...@@ -102,7 +91,7 @@ namespace dynamicgraph {
return Value(); return Value();
} }
// //
// Template specialization: int // Template specialization: int
// //
template <class E> template <class E>
...@@ -140,7 +129,7 @@ namespace dynamicgraph { ...@@ -140,7 +129,7 @@ namespace dynamicgraph {
return Value(); return Value();
} }
// //
// Template specialization: float // Template specialization: float
// //
template <class E> template <class E>
...@@ -178,7 +167,7 @@ namespace dynamicgraph { ...@@ -178,7 +167,7 @@ namespace dynamicgraph {
return Value(); return Value();
} }
// //
// Template specialization: double // Template specialization: double
// //
template <class E> template <class E>
...@@ -216,7 +205,7 @@ namespace dynamicgraph { ...@@ -216,7 +205,7 @@ namespace dynamicgraph {
return Value(); return Value();
} }
// //
// Template specialization: std::string // Template specialization: std::string
// //
template <class E> template <class E>
...@@ -254,7 +243,7 @@ namespace dynamicgraph { ...@@ -254,7 +243,7 @@ namespace dynamicgraph {
return Value(); return Value();
} }
// //
// Template specialization: Vector // Template specialization: Vector
// //
template <class E> template <class E>
...@@ -292,7 +281,7 @@ namespace dynamicgraph { ...@@ -292,7 +281,7 @@ namespace dynamicgraph {
return Value(); return Value();
} }
// //
// Template specialization: Matrix // Template specialization: Matrix
// //
template <class E> template <class E>
......
...@@ -3,17 +3,6 @@ ...@@ -3,17 +3,6 @@
// //
// Author: Florent Lamiraux // Author: Florent Lamiraux
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
// dynamic-graph 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 Lesser General Public License for more details. You should
// have received a copy of the GNU Lesser General Public License along
// with dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef DYNAMIC_GRAPH_COMMAND_H #ifndef DYNAMIC_GRAPH_COMMAND_H
#define DYNAMIC_GRAPH_COMMAND_H #define DYNAMIC_GRAPH_COMMAND_H
......
...@@ -2,18 +2,6 @@ ...@@ -2,18 +2,6 @@
// Copyright 2010, François Bleibel, Thomas Moulard, Olivier Stasse, // Copyright 2010, François Bleibel, Thomas Moulard, Olivier Stasse,
// JRL, CNRS/AIST. // JRL, CNRS/AIST.
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
//
// dynamic-graph 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
// dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef DYNAMIC_GRAPH_DEBUG_HH #ifndef DYNAMIC_GRAPH_DEBUG_HH
# define DYNAMIC_GRAPH_DEBUG_HH # define DYNAMIC_GRAPH_DEBUG_HH
......
...@@ -2,18 +2,6 @@ ...@@ -2,18 +2,6 @@
// Copyright 2010, François Bleibel, Thomas Moulard, Olivier Stasse, // Copyright 2010, François Bleibel, Thomas Moulard, Olivier Stasse,
// JRL, CNRS/AIST. // JRL, CNRS/AIST.
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
//
// dynamic-graph 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
// dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef DYNAMIC_GRAPH_API_H #ifndef DYNAMIC_GRAPH_API_H
# define DYNAMIC_GRAPH_API_H # define DYNAMIC_GRAPH_API_H
......
...@@ -3,17 +3,6 @@ ...@@ -3,17 +3,6 @@
// //
// Author: Rohan Budhiraja // Author: Rohan Budhiraja
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
// dynamic-graph 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 Lesser General Public License for more details. You should
// have received a copy of the GNU Lesser General Public License along
// with dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef DYNAMIC_GRAPH_EIGEN_IO_H #ifndef DYNAMIC_GRAPH_EIGEN_IO_H
#define DYNAMIC_GRAPH_EIGEN_IO_H #define DYNAMIC_GRAPH_EIGEN_IO_H
...@@ -39,7 +28,7 @@ using dynamicgraph::ExceptionSignal; ...@@ -39,7 +28,7 @@ using dynamicgraph::ExceptionSignal;
namespace Eigen { namespace Eigen {
typedef EIGEN_DEFAULT_DENSE_INDEX_TYPE eigen_index; typedef EIGEN_DEFAULT_DENSE_INDEX_TYPE eigen_index;
inline std::istringstream& operator >> (std::istringstream &iss, inline std::istringstream& operator >> (std::istringstream &iss,
dynamicgraph::Vector &inst) { dynamicgraph::Vector &inst) {
unsigned int _size; unsigned int _size;
double _dbl_val; double _dbl_val;
...@@ -82,7 +71,7 @@ namespace Eigen { ...@@ -82,7 +71,7 @@ namespace Eigen {
*/ */
template<typename Derived> template<typename Derived>
inline std::istringstream& operator >> (std::istringstream &iss, inline std::istringstream& operator >> (std::istringstream &iss,
DenseBase<Derived> &inst) { DenseBase<Derived> &inst) {
unsigned int _colsize; unsigned int _colsize;
unsigned int _rowsize; unsigned int _rowsize;
...@@ -133,13 +122,13 @@ namespace Eigen { ...@@ -133,13 +122,13 @@ namespace Eigen {
return iss; return iss;
} }
inline std::istringstream& operator >> (std::istringstream &iss, inline std::istringstream& operator >> (std::istringstream &iss,
Transform<double,3,Affine> &inst) { Transform<double,3,Affine> &inst) {
MatrixXd M; iss >> M; inst.matrix() = M; return iss; } MatrixXd M; iss >> M; inst.matrix() = M; return iss; }
/* \brief Eigen Homogeneous Matrix output /* \brief Eigen Homogeneous Matrix output
* *
...@@ -147,27 +136,27 @@ namespace Eigen { ...@@ -147,27 +136,27 @@ namespace Eigen {
* e.g. [2,5]((1 23 32.2 12.12 32),(2 32 23 92.01 19.2)) * e.g. [2,5]((1 23 32.2 12.12 32),(2 32 23 92.01 19.2))
*/ */
inline std::ostream& operator << (std::ostream &os, inline std::ostream& operator << (std::ostream &os,
Transform<double,3,Affine> MH) { Transform<double,3,Affine> MH) {
IOFormat boostFmt(StreamPrecision, DontAlignCols, IOFormat boostFmt(StreamPrecision, DontAlignCols,
",", ",", ",", ",",
"(",")", "(",")",
"(",")"); "(",")");
os << "[4,4]"<< MH.matrix().format(boostFmt); return os; } os << "[4,4]"<< MH.matrix().format(boostFmt); return os; }
inline std::ostream& operator << (std::ostream &os, inline std::ostream& operator << (std::ostream &os,
AngleAxisd quat) { AngleAxisd quat) {
VectorXd v(4); v(0) = quat.angle(); v.tail<3>() = quat.axis(); VectorXd v(4); v(0) = quat.angle(); v.tail<3>() = quat.axis();
os << v; return os; } os << v; return os; }
inline std::istringstream& operator >> (std::istringstream &iss, inline std::istringstream& operator >> (std::istringstream &iss,
AngleAxisd &inst) { AngleAxisd &inst) {
VectorXd v(4); iss >>v; VectorXd v(4); iss >>v;
inst.angle() = v(0); inst.axis() = v.tail<3>(); inst.angle() = v(0); inst.axis() = v.tail<3>();
return iss; } return iss; }
} }
......
/* /*
* Copyright 2011, Nicolas Mansard, LAAS-CNRS * Copyright 2011, Nicolas Mansard, LAAS-CNRS
* *
* This file is part of sot-core.
* sot-core 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.
* sot-core 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 Lesser General Public License for more details. You should
* have received a copy of the GNU Lesser General Public License along
* with sot-core. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef __sot_core_entity_helper_H__ #ifndef __sot_core_entity_helper_H__
......
...@@ -2,18 +2,6 @@ ...@@ -2,18 +2,6 @@
// Copyright 2010, François Bleibel, Thomas Moulard, Olivier Stasse, // Copyright 2010, François Bleibel, Thomas Moulard, Olivier Stasse,
// JRL, CNRS/AIST. // JRL, CNRS/AIST.
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
//
// dynamic-graph 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
// dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef DYNAMIC_GRAPH_ENTITY_H #ifndef DYNAMIC_GRAPH_ENTITY_H
# define DYNAMIC_GRAPH_ENTITY_H # define DYNAMIC_GRAPH_ENTITY_H
......
...@@ -2,18 +2,6 @@ ...@@ -2,18 +2,6 @@
// Copyright 2010, François Bleibel, Thomas Moulard, Olivier Stasse, // Copyright 2010, François Bleibel, Thomas Moulard, Olivier Stasse,
// JRL, CNRS/AIST. // JRL, CNRS/AIST.
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
//
// dynamic-graph 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
// dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef DYNAMIC_GRAPH_EXCEPTION_ABSTRACT_H #ifndef DYNAMIC_GRAPH_EXCEPTION_ABSTRACT_H
# define DYNAMIC_GRAPH_EXCEPTION_ABSTRACT_H # define DYNAMIC_GRAPH_EXCEPTION_ABSTRACT_H
......
...@@ -2,18 +2,6 @@ ...@@ -2,18 +2,6 @@
// Copyright 2010, François Bleibel, Thomas Moulard, Olivier Stasse, // Copyright 2010, François Bleibel, Thomas Moulard, Olivier Stasse,
// JRL, CNRS/AIST. // JRL, CNRS/AIST.
// //
// This file is part of dynamic-graph.
// dynamic-graph 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.
//
// dynamic-graph 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
// dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
#ifndef DYNAMIC_GRAPH_EXCEPTION_FACTORY_H #ifndef DYNAMIC_GRAPH_EXCEPTION_FACTORY_H
# define DYNAMIC_GRAPH_EXCEPTION_FACTORY_H # define DYNAMIC_GRAPH_EXCEPTION_FACTORY_H
......
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