Browse Source

adds copyright notice

master
Louis-Guillaume DUBOIS 11 years ago
parent
commit
5ba7b67270
  1. 3
      AUTHORS
  2. 2
      LICENSE
  3. 3
      LISEZMOI.md
  4. 3
      README.md
  5. 2
      cfg/Commander.cfg
  6. 2
      cfg/Estimator.cfg
  7. 2
      cfg/Filter.cfg
  8. 2
      package.xml
  9. 3
      src/commander.cpp
  10. 3
      src/display.cpp
  11. 3
      src/display.h
  12. 3
      src/estimator.cpp
  13. 3
      src/filter.cpp
  14. 3
      src/keyboard_cmd.cpp

3
AUTHORS

@ -0,0 +1,3 @@
Luc ABSIL <luc.absil@supelec.fr>
Louis-Guillaume DUBOIS <contact@lgdubois.fr>
Paul JANIN <paul.janin@supelec.fr>

2
LICENSE

@ -0,0 +1,2 @@
Copyright (C) 2015 CentraleSupélec
All rights reserved

3
LISEZMOI.md

@ -1,3 +1,6 @@
Copyright (C) 2015 CentraleSupélec
All rights reserved
An english version of this file is available (README.md)
Une version anglaise de ce fichier est disponible (README.md)

3
README.md

@ -1,3 +1,6 @@
Copyright (C) 2015 CentraleSupélec
All rights reserved
La documentation originale est en français : LISEZMOI.md. La documentation ci-dessous n’est qu’une traduction.
The original manual is the french "LISEZMOI.md", you read below a translation of this file.

2
cfg/Commander.cfg

@ -1,4 +1,6 @@
#!/usr/bin/env python
# Copyright (C) 2015 CentraleSupélec
# All rights reserved
PACKAGE = "hand_control"
from dynamic_reconfigure.parameter_generator_catkin import *
gen = ParameterGenerator()

2
cfg/Estimator.cfg

@ -1,4 +1,6 @@
#!/usr/bin/env python
# Copyright (C) 2015 CentraleSupélec
# All rights reserved
PACKAGE = "hand_control"
from dynamic_reconfigure.parameter_generator_catkin import *
gen = ParameterGenerator()

2
cfg/Filter.cfg

@ -1,4 +1,6 @@
#!/usr/bin/env python
# Copyright (C) 2015 CentraleSupélec
# All rights reserved
PACKAGE = "hand_control"
from dynamic_reconfigure.parameter_generator_catkin import *
gen = ParameterGenerator()

2
package.xml

@ -8,7 +8,7 @@
<maintainer email="contact@lgdubois.fr">Louis-Guillaume DUBOIS</maintainer>
<maintainer email="paul.janin@supelec.fr">Paul JANIN</maintainer>
<license>BSD</license>
<license>All rights reserved</license>
<author email="luc.absil@supelec.fr">Luc ABSIL</author>
<author email="contact@lgdubois.fr">Louis-Guillaume DUBOIS</author>

3
src/commander.cpp

@ -1,3 +1,6 @@
/* Copyright (C) 2015 CentraleSupélec
* All rights reserved
*/
#include <ros/ros.h>
#include <ros/time.h>
#include <locale.h>

3
src/display.cpp

@ -1,3 +1,6 @@
/* Copyright (C) 2015 CentraleSupélec
* All rights reserved
*/
// library to be used by "keyboard_cmd.cpp"
#include <ncurses.h>
#include <string>

3
src/display.h

@ -1,3 +1,6 @@
/* Copyright (C) 2015 CentraleSupélec
* All rights reserved
*/
// library to be used by "keyboard_cmd.cpp"
#ifndef CURSES_DISPLAY
#define CURSES_DISPLAY

3
src/estimator.cpp

@ -1,3 +1,6 @@
/* Copyright (C) 2015 CentraleSupélec
* All rights reserved
*/
#include <ros/ros.h>
#include <pcl_ros/point_cloud.h>
#include <pcl/point_types.h>

3
src/filter.cpp

@ -1,3 +1,6 @@
/* Copyright (C) 2015 CentraleSupélec
* All rights reserved
*/
#include <ros/ros.h>
#include <pcl_ros/point_cloud.h>
#include <pcl/point_types.h>

3
src/keyboard_cmd.cpp

@ -1,3 +1,6 @@
/* Copyright (C) 2015 CentraleSupélec
* All rights reserved
*/
#include <ros/ros.h>
#include <ros/time.h>
#include <locale.h>

Loading…
Cancel
Save