forked from robotology/yarp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCOPYING
1904 lines (1491 loc) · 53.4 KB
/
COPYING
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Unless otherwise stated, files in YARP are:
Copyright: 2012 Paul Fitzpatrick, Lorenzo Natale, Giorgio Metta
Released under the GNU LGPLv2.1 or later - see LGPL.TXT for details.
The list of authors for YARP (ordered by file count) is:
Paul Fitzpatrick
Istituto Italiano di Tecnologia (IIT)
Lorenzo Natale
Ali Paikan
Daniele E. Domenichelli
Marco Randazzo
Alberto Cardellino
Davide Perrone
Giorgio Metta
Giacomo Spigler
Arjan Gijsberts
Duarte Aragao
Elena Ceseracciu
Francesco Romano
Alessandro Scalzo
Andrea Ruzzenenti
Chris Morley
Daniel Krieg
Anne van Rossum
Silvio Traversaro
Stephane Lallee
Fabien Benureau
Alexandre Bernardino
Ugo Pattacini
Renaud Detry
Miguel Sarabia del Castillo
Julio Gomes
Carlos Beltran-Gonzalez
Mattia Castelnovi
Jonas Ruesch
Francesco Nori
Eric Mislivec
Assif Mirza
Ze Ji
Valentina Gaggero
Freyr Magnusson
Radu Bogdan Rusu
Mike P. Blow
Lars Olsson
Alexis Maldonado
Tobias Fischer
Nicolo' Genesio
Holger Friedrich
Francesco Giovannini
Claudio Fantacci
The list of committers in the YARP repository (ordered by number of commit) is:
Paul Fitzpatrick
Daniele E. Domenichelli
Lorenzo Natale
Marco Randazzo
Ugo Pattacini
Alberto Cardellino
Ali Paikan
Nicolo' Genesio
YARP Developers
Alessandro Scalzo
Andrea Ruzzenenti
Elena Ceseracciu
Damiano Enerli
Silvio Traversaro
Francesco Romano
Giacomo Spigler
Matteo Brunettini
Giorgio Metta
Vadim Tikhanoff
Davide Perrone
Alessandro Roncone
Konstantinos Theofilis
Alexandre Bernardino
Claudio Fantacci
Duarte Aragao
Tobias Fischer
Francesco Nori
Andrea Del Prete
Valentina Gaggero
Arjan Gijsberts
Carlos Beltran-Gonzalez
Bartek Åukawski
Claudio Castellini
Daniel Krieg
Alexandros Paraschos
Juan G Victores
Diego Ferigo
Giovanni Saponaro
Giulia Vezzani
Jonas Ruesch
Michael Bucko
Massimo Regoli
Nuno Guedelha
Alessio Rocchi
Andrea Ruzzenenti
Mirko Ferrati
Aiko Dinale
David Estevez
Francesco Giovannini
Andrea Ruzzenenti
Bertrand Higy
Bruno Nery
Davide Pollarolo
Fabien Benureau
Francesco Orabona
Gabriele Nava
Holger Friedrich
Naeem Assif Mirza
Plinio Moreno
Ze Ji
Carlo Ciliberto
Claudia Latella
Davide Tome
Elena Rampone
Enrico Mingo
Francesca Stramandinoli
Marco Monforte
Massimiliano Iacono
Matej Hoffmann
Pedro Vicente
Serena Ivaldi
VÃtor Galvão
Zero King
The list of copyright holders for YARP is:
Copyright 2002, 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018
RobotCub Consortium (765 files)
Istituto Italiano di Tecnologia (IIT) (647 files)
Duarte Aragao (25 files)
Giacomo Spigler (17 files)
Chris Morley (16 files)
Daniel Krieg (15 files)
Alexandre Bernardino (8 files)
Arjan Gijsberts (7 files)
Marco Randazzo (7 files)
Anne van Rossum (6 files)
Carlos Beltran-Gonzalez (5 files)
Renaud Detry (5 files)
Assif Mirza (4 files)
Julio Gomes (4 files)
Mattia Castelnovi (4 files)
Jonas Ruesch (3 files)
Ze Ji (3 files)
Eric Mislivec (2 files)
Freyr Magnusson (2 files)
Lars Olsson (2 files)
Mike P. Blow (2 files)
Francesco Giovannini (1 file)
The identifier "RobotCub Consortium" used in some copyright statements is
equivalent to the following list of institutions:
* Ecole Polytechnique Federale de Lausanne - Biologically-Inspired
Robotics Group (BIRG) and Learning Algorithms and Systems Lab (LASA),
Switzerland
* IST Lisbon - Computer Vision and Robotics Lab Lisbon - Portugal
* Italian Institute of Technology - Dept. of Robotics, Brain and
Cognitive Sciences - Genova, Italy
* Sant'Anna School of Advanced Studies - ARTS Lab - Pisa - Italy
* Telerobot S.r.l. - Genova - Italy
* University of Ferrara - Department of Biomedical Science - Human
Physiology - Ferrara - Italy
* University of Genova - LIRA-Lab, Dipartimento di Informatica,
Sistemistica e Telematica - Genova - Italy
* University of Hertfordshire - School of Computer Science - United
Kingdom
* University of Uppsala - Department of Psychology - Uppsala - Sweden
* University of Zurich - Artificial Intelligence Lab, Department of
Information Technology - Zurich - Switzerland
* [2005-2008] University of Salford - Centre for Robotics and
Automation - Salford - United Kingdom
* [2009-2010] The University of Sheffield, Dept. of Automatic Control &
Systems Engineering, Sheffield, UK
Certain files are integrated in YARP from other sources with
friendly licenses. Here is a list of these files and a summary of
their copyright. See the individual files for more details.
All files used in the default YARP build are compatible with the
LGPL. Optional modules may require use of YARP under the GPL,
rather than the LGPL.
src/yarpdataplayer/src/main.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpdataplayer/src/utils.cpp
Copyright: (C) 2011 Istituto Italiano di Tecnologia (IIT)
Authors: Vadim Tikhanoff
CopyPolicy: GPLv2 or later
src/yarpdataplayer/src/loadingwidget.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpdataplayer/src/mainwindow.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpdataplayer/src/worker.cpp
Copyright: (C) 2011 Istituto Italiano di Tecnologia (IIT)
Authors: Vadim Tikhanoff
CopyPolicy: GPLv2 or later
src/yarpdataplayer/src/genericinfodlg.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpdataplayer/src/aboutdlg.cpp
Copyright: ,QString webSite,QWidget
CopyPolicy: GPLv2 or later
src/yarpdataplayer/include/genericinfodlg.h
Copyright: unknown
CopyPolicy: unknown
src/yarpdataplayer/include/loadingwidget.h
Copyright: unknown
CopyPolicy: unknown
src/yarpdataplayer/include/aboutdlg.h
Copyright: , QString website, QWidget
CopyPolicy: unknown
src/yarpdataplayer/include/mainwindow.h
Copyright: unknown
CopyPolicy: unknown
src/yarpdataplayer/include/msvc/dirent.h
Copyright: (C) 2006 Toni Ronkko
CopyPolicy: unknown
src/yarpdataplayer/include/utils.h
Copyright: (C) 2011 Istituto Italiano di Tecnologia (IIT)
Authors: Vadim Tikhanoff
CopyPolicy: GPLv2 or later
src/yarpdataplayer/include/log.h
Copyright: unknown
CopyPolicy: unknown
src/yarpdataplayer/include/worker.h
Copyright: (C) 2011 Istituto Italiano di Tecnologia (IIT)
Authors: Vadim Tikhanoff
CopyPolicy: GPLv2 or later
src/libYARP_OS/src/TcpConnector.cpp
Copyright: (C) 2010 Anne van Rossum <[email protected]>
CopyPolicy: LGPL; non-binding note discouraging certain uses
src/libYARP_OS/src/TcpAcceptor.cpp
Copyright: (C) 2010 Anne van Rossum <[email protected]>
CopyPolicy: LGPL; non-binding note discouraging certain uses
src/libYARP_OS/src/sha2.c
Copyright: (C) 2005, 2007 Olivier Gay <[email protected]>
CopyPolicy: 3-clause BSD
src/libYARP_OS/src/hmac_sha2.c
Copyright: (C) 2005 Olivier Gay <[email protected]>
CopyPolicy: 3-clause BSD
src/libYARP_OS/src/Carrier.cpp
Copyright: (C) 2017 Istituto Italiano di Tecnologia (IIT)
Authors: Valentina Gaggero
CopyPolicy: unknown
src/libYARP_OS/src/TcpStream.cpp
Copyright: (C) 2010 Anne van Rossum <[email protected]>
CopyPolicy: LGPL; non-binding note discouraging certain uses
src/libYARP_OS/include/yarp/os/impl/TcpConnector.h
Copyright: (C) 2010 Anne van Rossum <[email protected]>
CopyPolicy: LGPL; non-binding note discouraging certain uses
src/libYARP_OS/include/yarp/os/impl/hmac/sha2.h
Copyright: (C) 2005, 2007 Olivier Gay <[email protected]>
CopyPolicy: 3-clause BSD
src/libYARP_OS/include/yarp/os/impl/hmac/hmac_sha2.h
Copyright: (C) 2005 Olivier Gay <[email protected]>
CopyPolicy: 3-clause BSD
src/libYARP_OS/include/yarp/os/impl/TcpAcceptor.h
Copyright: (C) 2010 Anne van Rossum <[email protected]>
CopyPolicy: LGPL; non-binding note discouraging certain uses
src/libYARP_OS/include/yarp/os/impl/TcpStream.h
Copyright: (C) 2010 Anne van Rossum <[email protected]>
CopyPolicy: LGPL; non-binding note discouraging certain uses
src/yarplogger-console/main.cpp
Copyright: (C) 2014 Istituto Italiano di Tecnologia (IIT)
Authors: Marco Randazzo
CopyPolicy: GPLv2 or later
src/yarplogger-console/CMakeLists.txt
Copyright: (C) 2014 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: GPLv2
src/libYARP_dev/src/devices/RGBDSensorWrapper/rosPixelCode.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs_Image.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/nav_msgs/OccupancyGrid.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/nav_msgs/MapMetaData.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/tf2_msgs_TFMessage.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs_CameraInfo.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs/JointState.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs/Image.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs/CameraInfo.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs/LaserScan.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs/Imu.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs/RegionOfInterest.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/visualization_msgs_MarkerArray.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs_Point.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs/Vector3.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs/Quaternion.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs/Pose.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs/Wrench.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs/WrenchStamped.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs/Point.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs/Transform.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs/TransformStamped.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/tf2_msgs/TFMessage.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/visualization_msgs/Marker.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/visualization_msgs/MarkerArray.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs_RegionOfInterest.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/std_msgs_ColorRGBA.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs_JointState.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/nav_msgs_MapMetaData.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/nav_msgs_OccupancyGrid.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/visualization_msgs_Marker.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs_Pose.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs_PointField.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs_Imu.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs_WrenchStamped.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs_TransformStamped.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs_Quaternion.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/std_msgs/ColorRGBA.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/std_msgs/Header.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/TickTime.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs_Wrench.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/std_msgs_Header.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs_LaserScan.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs_Vector3.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/tf_tfMessage.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/sensor_msgs_PointCloud2.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/TickDuration.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/geometry_msgs_Transform.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/ros/include/tf/tfMessage.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/src/devices/msgs/CMakeLists.txt
Copyright: unknown
CopyPolicy: unknown
src/libYARP_dev/include/yarp/dev/IVisualServoing.h
Copyright: (C) 2017 Istituto Italiano di Tecnologia (IIT)
Authors: Claudio Fantacci
CopyPolicy: Released under the terms of the 3-clause BSD.
src/yarpmotorgui/partitem.h
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/main.cpp
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/jointitem.h
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/sliderOptions.cpp
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/yarpmotorgui.h
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/jointitem.cpp
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/startdlg.h
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/sequencewindow.h
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/sliderWithTarget.h
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/startdlg.cpp
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/piddlg.cpp
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/mainwindow.h
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/sliderWithTarget.cpp
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/mainwindow.cpp
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/piddlg.h
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/flowlayout.h
Copyright: (C) 2013 Digia Plc and/or its subsidiary(-ies).
CopyPolicy: unknown
src/yarpmotorgui/log.h
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/sequencewindow.cpp
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpmotorgui/flowlayout.cpp
Copyright: (C) 2013 Digia Plc and/or its subsidiary(-ies).
CopyPolicy: unknown
src/yarpmotorgui/sliderOptions.h
Copyright: (C) 2010 RobotCub Consortium
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/libYARP_manager/include/yarp/manager/impl/textparser.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-manager/logwidget.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-manager/genericinfodlg.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-manager/aboutdlg.h
Copyright: , QString website, QWidget
CopyPolicy: unknown
src/yarpmanager/src-manager/yscopewindow.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-manager/logwidget.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-manager/newapplicationwizard.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-manager/newapplicationwizard.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-manager/yscopewindow.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-manager/genericinfodlg.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-manager/aboutdlg.cpp
Copyright: ,QString webSite,QWidget
CopyPolicy: GPLv2 or later
src/yarpmanager/src-builder/builderwindow.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/builderscene.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/applicationitem.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/yarpbuilderlib.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/main.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/builderscene.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/builderwindow.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/customtree.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/customtree.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/yarpbuilderlib.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/applicationitem.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/itemsignalhandler.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/arrow.cpp
Copyright: (C) 2013 Digia Plc and/or its subsidiary(-ies).
CopyPolicy: unknown
src/yarpmanager/src-builder/propertiestable.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/builderitem.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/destinationportitem.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/yarpbuilderlib_global.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/moduleitem.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/commons.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/sourceportitem.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/destinationportitem.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/arrow.h
Copyright: (C) 2013 Digia Plc and/or its subsidiary(-ies).
CopyPolicy: unknown
src/yarpmanager/src-builder/moduleitem.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/builderitem.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/itemsignalhandler.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/sourceportitem.h
Copyright: unknown
CopyPolicy: unknown
src/yarpmanager/src-builder/propertiestable.h
Copyright: unknown
CopyPolicy: unknown
src/yarpscope/src/qtquick2applicationviewer/qtquick2applicationviewer.h
Copyright: unknown
CopyPolicy: unknown
src/yarpscope/src/qtquick2applicationviewer/qtquick2applicationviewer.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpscope/plugin/portreader.cpp
Copyright: unknown
CopyPolicy: unknown
src/yarpscope/plugin/portreader.h
Copyright: unknown
CopyPolicy: unknown
src/libYARP_gsl/src/Gsl.cpp
Copyright: (C) 2016 Istituto Italiano di Tecnologia (IIT)
Authors: Lorenzo Natale.
CopyPolicy: Released under the terms of the GPL 2.0 license or later.
src/libYARP_gsl/include/yarp/gsl/api.h
Copyright: (C) 2016 Istituto Italiano di Tecnologia (IIT)
Authors: Lorenzo Natale
CopyPolicy: Released under the terms of the GPLv2 or later
src/libYARP_gsl/include/yarp/gsl/impl/gsl_structs.h
Copyright: (C) 2007 RobotCub Consortium
Authors: Lorenzo Natale
CopyPolicy: Released under the terms of the GPLv2 or later
src/libYARP_gsl/include/yarp/gsl/Gsl.h
Copyright: (C) 2016 Istituto Italiano di Tecnologia (IIT)
Authors: Lorenzo Natale.
CopyPolicy: Released under the terms of the GPL 2.0 license or later.
src/devices/dimax_u2c/I2c.h
Copyright: (C) 2004 Dimax ( http://www.xdimax.com )
CopyPolicy: GPL
src/devices/dimax_u2c/i2cbridge.h
Copyright: (C) 2004 Dimax ( http://www.xdimax.com )
CopyPolicy: GPL
src/devices/dimax_u2c/u2c_common_func.h
Copyright: (C) 2004 Dimax ( http://www.xdimax.com )
CopyPolicy: GPL
src/devices/dimax_u2c/I2c.cpp
Copyright: (C) 2004 Dimax ( http://www.xdimax.com )
CopyPolicy: GPL
src/devices/fakeMotionControl/fakeMotionControl.h
Copyright: (C) 2016 Istituto Italiano di Tecnologia (IIT)
Authors: Alberto Cardellino
CopyPolicy: GPLv2 or later
src/devices/rpLidar2/rpLidar2.cpp
Copyright: (C) 2016 Istituto Italiano di Tecnologia (IIT)
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/devices/rpLidar2/rpLidar2.h
Copyright: (C) 2015 Istituto Italiano di Tecnologia (IIT)
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/devices/ffmpeg/avpreamble.h
Copyright: unknown
CopyPolicy: unknown
src/devices/fakeIMU/fakeIMU.h
Copyright: (C) 2015 Istituto Italiano di Tecnologia (IIT)
Authors: Alberto Cardellino
CopyPolicy: GPLv2 or later
src/devices/vfw/vfw_extra_from_wine.h
Copyright: (C) 2007 the Wine project
CopyPolicy: Released under the terms of the GNU LGPL v2.1. or later
src/devices/vfw/vfw_extra_from_australia.h
Copyright: (C) 2006 The University of Queensland, Australia <www.uq.edu.au>
CopyPolicy: GPL2 or later, or 4-clause BSD at your choice
src/devices/rpLidar/rpLidar.h
Copyright: (C) 2015 Istituto Italiano di Tecnologia (IIT)
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/devices/rpLidar/rpLidar.cpp
Copyright: (C) 2016 Istituto Italiano di Tecnologia (IIT)
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/devices/urbtc/kernel_module/urobotc.h
Copyright: (C) 2007 iXs Research Corp
CopyPolicy: GPLv2
src/devices/urbtc/kernel_module/urbtc.c
Copyright: (C) 2001-2004 Greg Kroah-Hartman ([email protected])
CopyPolicy: GPLv2
src/devices/urbtc/kernel_module/urbtc.h
Copyright: (C) 2007 iXs Research Corp
CopyPolicy: GPLv2
src/devices/fakeDepthCamera/fakeDepthCameraDriver.h
Copyright: (C) 2017 Istituto Italiano di Tecnologia (IIT)
Authors: Andrea Ruzzenenti
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/devices/fakeDepthCamera/fakeDepthCameraDriver.cpp
Copyright: (C) 2017 Istituto Italiano di Tecnologia (IIT)
Authors: Andrea Ruzzenenti
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/devices/fakeLaser/fakeLaser.cpp
Copyright: (C) 2015 Istituto Italiano di Tecnologia (IIT)
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/devices/fakeLaser/fakeLaser.h
Copyright: (C) 2015 Istituto Italiano di Tecnologia (IIT)
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/devices/jrkerr/sio_util.cpp
Copyright: (c) 2007 Jeffrey Kerr LLC
CopyPolicy: 3-clause BSD
src/devices/jrkerr/picservo.cpp
Copyright: (c) 2007 Jeffrey Kerr LLC
CopyPolicy: 3-clause BSD
src/devices/jrkerr/sio_util.h
Copyright: (c) 2007 Jeffrey Kerr LLC
CopyPolicy: 3-clause BSD
src/devices/jrkerr/nmccom.h
Copyright: (c) 2007 Jeffrey Kerr LLC
CopyPolicy: 3-clause BSD
src/devices/jrkerr/nmccom.cpp
Copyright: (c) 2007 Jeffrey Kerr LLC
CopyPolicy: 3-clause BSD
src/devices/jrkerr/picservo.h
Copyright: (c) 2007 Jeffrey Kerr LLC
CopyPolicy: 3-clause BSD
src/devices/laserFromDepth/laserFromDepth.h
Copyright: (C) 2015 Istituto Italiano di Tecnologia (IIT)
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/devices/laserFromDepth/laserFromDepth.cpp
Copyright: (C) 2016 Istituto Italiano di Tecnologia (IIT)
Authors: Marco Randazzo
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/devices/kinect/freenect/KinectDeviceDriver.h
Copyright: (C) 2010 Philipp Robbel
CopyPolicy: GPLv2
src/devices/kinect/freenect/ServerKinect.h
Copyright: (C) 2010 Philipp Robbel
CopyPolicy: GPLv2
src/devices/kinect/freenect/CMakeLists.txt
Copyright: (C) 2010 Philipp Robbel
CopyPolicy: GPLv2
src/devices/kinect/freenect/KinectDeviceDriver.cpp
Copyright: (C) 2010 Philipp Robbel
CopyPolicy: GPLv2
src/devices/kinect/freenect/KinectExample.cpp
Copyright: (C) 2010 Philipp Robbel
CopyPolicy: GPLv2
src/devices/imuBosch_BNO055/imuBosch_BNO055.h
Copyright: (C) 2016 Istituto Italiano di Tecnologia (IIT)
Authors: Alberto Cardellino
CopyPolicy: GPLv2
src/devices/imuBosch_BNO055/CMakeLists.txt
Copyright: (C) 2016 Istituto Italiano di Tecnologia (IIT)
Authors: Alberto Cardellino
CopyPolicy: GPLv2
src/devices/imuBosch_BNO055/imuBosch_BNO055.cpp
Copyright: (C) 2016 Istituto Italiano di Tecnologia (IIT)
Authors: Alberto Cardellino
CopyPolicy: GPLv2
src/devices/depthCamera/depthCameraDriver.cpp
Copyright: unknown
CopyPolicy: unknown
src/devices/depthCamera/depthCameraDriver.h
Copyright: (C) 2015 Istituto Italiano di Tecnologia (IIT)
Authors: Andrea Ruzzenenti
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpdatadumper/main.cpp
Copyright: (C) 2010 RobotCub Consortium
Authors: Ugo Pattacini
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/yarpdatadumper/CMakeLists.txt
Copyright: (C) 2010 RobotCub Consortium
Authors: Ugo Pattacini
CopyPolicy: Released under the terms of the GPLv2 or later, see GPL.TXT
src/carriers/portmonitor_carrier/lua/lua_swig.h
Copyright: unknown
CopyPolicy: unknown
src/carriers/h264_carrier/H264Decoder.h
Copyright: (C) 2017 Istituto Italiano di Tecnologia (IIT)
Authors: Valentina Gaggero
CopyPolicy: unknown
src/carriers/h264_carrier/H264Stream.h
Copyright: (C) 2017 Istituto Italiano di Tecnologia (IIT)
Authors: Valentina Gaggero
CopyPolicy: unknown
src/carriers/h264_carrier/H264Stream.cpp
Copyright: (C) 2017 Istituto Italiano di Tecnologia (IIT)
Authors: Valentina Gaggero
CopyPolicy: unknown
src/carriers/h264_carrier/H264Carrier.cpp
Copyright: (C) 2017 Istituto Italiano di Tecnologia (IIT)
Authors: Valentina Gaggero
CopyPolicy: unknown
src/carriers/h264_carrier/H264Decoder.cpp
Copyright: (C) 2017 Istituto Italiano di Tecnologia (IIT)
Authors: Valentina Gaggero
CopyPolicy: unknown
src/carriers/h264_carrier/H264Carrier.h