diff --git a/libowlps-client/libowlps-client.c b/libowlps-client/libowlps-client.c index f173f71..7eabf67 100644 --- a/libowlps-client/libowlps-client.c +++ b/libowlps-client/libowlps-client.c @@ -1,3 +1,12 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the main source file of libowlps-client. + */ + + #include "owlps-client.h" #include diff --git a/libowlps-client/owlps-client.h b/libowlps-client/owlps-client.h index cb464d6..453231a 100644 --- a/libowlps-client/owlps-client.h +++ b/libowlps-client/owlps-client.h @@ -1,8 +1,14 @@ /* - * This library contains code used to send positioning requests (normal, - * calibration or autocalibration). + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the header file of libowlps-client, the library that contains + * the code used to send positioning requests (normal, calibration and + * autocalibration). */ + #ifndef _LIBOWLPS_CLIENT_ #define _LIBOWLPS_CLIENT_ diff --git a/libowlps-resultreader/libowlps-resultreader.c b/libowlps-resultreader/libowlps-resultreader.c index 3f1d05d..92ed2df 100644 --- a/libowlps-resultreader/libowlps-resultreader.c +++ b/libowlps-resultreader/libowlps-resultreader.c @@ -1,3 +1,12 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the main source file of libowlps-resultreader. + */ + + #include "owlps-resultreader.h" #include diff --git a/libowlps-resultreader/owlps-resultreader-udp.c b/libowlps-resultreader/owlps-resultreader-udp.c index d0476e1..43b54fa 100644 --- a/libowlps-resultreader/owlps-resultreader-udp.c +++ b/libowlps-resultreader/owlps-resultreader-udp.c @@ -1,10 +1,17 @@ /* - * This is a simple program to demonstrate the use of - * libowlps-resultreader-udp. - * It must be linked against libowlps and its dependencies + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the main source file of OwlPS ResultReader-UDP, a simple + * program demonstrating the use of libowlps-resultreader-udp. + * The received results are printed on the standard output. + * + * This program must be linked against libowlps and its dependencies * (see the Makefile). */ + #include "owlps-resultreader.h" #include diff --git a/libowlps-resultreader/owlps-resultreader.h b/libowlps-resultreader/owlps-resultreader.h index 8d0d08e..c3b52fe 100644 --- a/libowlps-resultreader/owlps-resultreader.h +++ b/libowlps-resultreader/owlps-resultreader.h @@ -1,9 +1,15 @@ /* - * This library provides functions to read results sent on UDP by OwlPS - * Positioning. - * See the example program owlps-resultreader-udp.c. + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the header file of libowlps-resultreader, the library that + * provides functions to read results sent on UDP by OwlPS Positioning. + * + * See also the example program owlps-resultreader-udp.c. */ + #ifndef _LIBOWLPS_RESULTREADER_CSV_ #define _LIBOWLPS_RESULTREADER_CSV_ diff --git a/libowlps/libowlps.c b/libowlps/libowlps.c index 73cf9c1..91314dd 100644 --- a/libowlps/libowlps.c +++ b/libowlps/libowlps.c @@ -1,5 +1,9 @@ /* - * This file is part of the rtap localisation project. + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the main source file of libowlps. */ diff --git a/libowlps/owlps.h b/libowlps/owlps.h index 285ad72..025cdc0 100644 --- a/libowlps/owlps.h +++ b/libowlps/owlps.h @@ -1,7 +1,13 @@ /* - * This file is part of the rtap localisation project. + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the header file of libowlps, the library containing the code + * shared by most of the OwlPS programs. */ + #ifndef _LIBOWLPS_H_ #define _LIBOWLPS_H_ diff --git a/owlps-aggregator/owlps-aggregator.h b/owlps-aggregator/owlps-aggregator.h index 65d8973..4f29aac 100644 --- a/owlps-aggregator/owlps-aggregator.h +++ b/owlps-aggregator/owlps-aggregator.h @@ -1,7 +1,12 @@ /* - * This file is part of the rtap localisation project. + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the header file of OwlPS Aggregator. */ + #ifndef _OWLPS_AGGREGATOR_H_ #define _OWLPS_AGGREGATOR_H_ diff --git a/owlps-aggregator/owlps-aggregatord.c b/owlps-aggregator/owlps-aggregatord.c index 6681cd6..2ce5f3e 100644 --- a/owlps-aggregator/owlps-aggregatord.c +++ b/owlps-aggregator/owlps-aggregatord.c @@ -1,5 +1,11 @@ /* - * This file is part of the rtap localisation project. + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the main source file of OwlPS Aggregator, the program that + * aggregates the requests captured by the Listeners in order to present + * them to the positioning server. */ diff --git a/owlps-client/owlps-client.c b/owlps-client/owlps-client.c index 0cbeaa0..a8f61be 100644 --- a/owlps-client/owlps-client.c +++ b/owlps-client/owlps-client.c @@ -1,7 +1,13 @@ /* - * This file is part of the rtap localisation project. + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the main source file of OwlPS Client, the program used to + * send positioning requests to the infrastructure. */ + #include #ifdef ENABLE_RECEIVE_POSITION diff --git a/owlps-listener/owlps-listener.h b/owlps-listener/owlps-listener.h index fe161a9..0efed76 100644 --- a/owlps-listener/owlps-listener.h +++ b/owlps-listener/owlps-listener.h @@ -1,7 +1,12 @@ /* - * This file is part of the rtap localisation project. + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the header file of OwlPS Listener. */ + #ifndef _OWLPS_LISTENER_H_ #define _OWLPS_LISTENER_H_ diff --git a/owlps-listener/owlps-listenerd.c b/owlps-listener/owlps-listenerd.c index 3f65627..c39a315 100644 --- a/owlps-listener/owlps-listenerd.c +++ b/owlps-listener/owlps-listenerd.c @@ -1,5 +1,11 @@ /* - * This file is part of the rtap localisation project. + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the main source file of OwlPS Listener, the program that + * captures the requests sent by the mobile terminals and forwards them + * to the Aggregator. */ diff --git a/owlps-positioning/src/accesspoint.cc b/owlps-positioning/src/accesspoint.cc index e6fb4d0..9037283 100644 --- a/owlps-positioning/src/accesspoint.cc +++ b/owlps-positioning/src/accesspoint.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "accesspoint.hh" diff --git a/owlps-positioning/src/accesspoint.hh b/owlps-positioning/src/accesspoint.hh index d42ea99..73c2aba 100644 --- a/owlps-positioning/src/accesspoint.hh +++ b/owlps-positioning/src/accesspoint.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_ACCESSPOINT_HH_ #define _OWLPS_POSITIONING_ACCESSPOINT_HH_ diff --git a/owlps-positioning/src/accesspointsreadercsv.cc b/owlps-positioning/src/accesspointsreadercsv.cc index 93ccb07..de7e247 100644 --- a/owlps-positioning/src/accesspointsreadercsv.cc +++ b/owlps-positioning/src/accesspointsreadercsv.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "accesspointsreadercsv.hh" #include "point3d.hh" #include "stock.hh" diff --git a/owlps-positioning/src/accesspointsreadercsv.hh b/owlps-positioning/src/accesspointsreadercsv.hh index a81b7a4..851df72 100644 --- a/owlps-positioning/src/accesspointsreadercsv.hh +++ b/owlps-positioning/src/accesspointsreadercsv.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_ACCESSPOINTSREADERCSV_HH_ #define _OWLPS_POSITIONING_ACCESSPOINTSREADERCSV_HH_ diff --git a/owlps-positioning/src/area.cc b/owlps-positioning/src/area.cc index 05eb191..8927a11 100644 --- a/owlps-positioning/src/area.cc +++ b/owlps-positioning/src/area.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "area.hh" #include "building.hh" diff --git a/owlps-positioning/src/area.hh b/owlps-positioning/src/area.hh index 8e96d64..53e39b2 100644 --- a/owlps-positioning/src/area.hh +++ b/owlps-positioning/src/area.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_AREA_HH_ #define _OWLPS_POSITIONING_AREA_HH_ diff --git a/owlps-positioning/src/building.cc b/owlps-positioning/src/building.cc index 5ddcca9..de22765 100644 --- a/owlps-positioning/src/building.cc +++ b/owlps-positioning/src/building.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "building.hh" #include "area.hh" #include "waypoint.hh" diff --git a/owlps-positioning/src/building.hh b/owlps-positioning/src/building.hh index 3c8dbee..dda4e0f 100644 --- a/owlps-positioning/src/building.hh +++ b/owlps-positioning/src/building.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_BUILDING_HH_ #define _OWLPS_POSITIONING_BUILDING_HH_ diff --git a/owlps-positioning/src/calibrationrequest.cc b/owlps-positioning/src/calibrationrequest.cc index ba7841e..db8eab9 100644 --- a/owlps-positioning/src/calibrationrequest.cc +++ b/owlps-positioning/src/calibrationrequest.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "calibrationrequest.hh" #include "referencepoint.hh" diff --git a/owlps-positioning/src/calibrationrequest.hh b/owlps-positioning/src/calibrationrequest.hh index a8bfd34..980fc28 100644 --- a/owlps-positioning/src/calibrationrequest.hh +++ b/owlps-positioning/src/calibrationrequest.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_CALIBRATIONREQUEST_HH_ #define _OWLPS_POSITIONING_CALIBRATIONREQUEST_HH_ diff --git a/owlps-positioning/src/cartographyalgorithm.cc b/owlps-positioning/src/cartographyalgorithm.cc index 5ac94fc..8067b5c 100644 --- a/owlps-positioning/src/cartographyalgorithm.cc +++ b/owlps-positioning/src/cartographyalgorithm.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "cartographyalgorithm.hh" diff --git a/owlps-positioning/src/cartographyalgorithm.hh b/owlps-positioning/src/cartographyalgorithm.hh index dd58361..bf6131e 100644 --- a/owlps-positioning/src/cartographyalgorithm.hh +++ b/owlps-positioning/src/cartographyalgorithm.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_CARTOGRAPHYALGORITHM_HH_ #define _OWLPS_POSITIONING_CARTOGRAPHYALGORITHM_HH_ diff --git a/owlps-positioning/src/configuration.cc b/owlps-positioning/src/configuration.cc index 67ad563..9c3cb92 100644 --- a/owlps-positioning/src/configuration.cc +++ b/owlps-positioning/src/configuration.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "configuration.hh" using namespace std ; diff --git a/owlps-positioning/src/configuration.hh b/owlps-positioning/src/configuration.hh index 948618b..2824aaa 100644 --- a/owlps-positioning/src/configuration.hh +++ b/owlps-positioning/src/configuration.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_CONFIGURATION_HH_ #define _OWLPS_POSITIONING_CONFIGURATION_HH_ diff --git a/owlps-positioning/src/csvfilereader.cc b/owlps-positioning/src/csvfilereader.cc index 213542c..eeae29d 100644 --- a/owlps-positioning/src/csvfilereader.cc +++ b/owlps-positioning/src/csvfilereader.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "csvfilereader.hh" #include "point3d.hh" diff --git a/owlps-positioning/src/csvfilereader.hh b/owlps-positioning/src/csvfilereader.hh index c123a4b..ca94659 100644 --- a/owlps-positioning/src/csvfilereader.hh +++ b/owlps-positioning/src/csvfilereader.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_CSVFILEREADER_HH_ #define _OWLPS_POSITIONING_CSVFILEREADER_HH_ diff --git a/owlps-positioning/src/direction.cc b/owlps-positioning/src/direction.cc index 7c1915f..068e292 100644 --- a/owlps-positioning/src/direction.cc +++ b/owlps-positioning/src/direction.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "direction.hh" #include "posexcept.hh" diff --git a/owlps-positioning/src/direction.hh b/owlps-positioning/src/direction.hh index e9e9e80..62390bb 100644 --- a/owlps-positioning/src/direction.hh +++ b/owlps-positioning/src/direction.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_DIRECTION_HH_ #define _OWLPS_POSITIONING_DIRECTION_HH_ diff --git a/owlps-positioning/src/fbcm.cc b/owlps-positioning/src/fbcm.cc index 10347ef..f5c74b8 100644 --- a/owlps-positioning/src/fbcm.cc +++ b/owlps-positioning/src/fbcm.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "fbcm.hh" #include "stock.hh" #include "configuration.hh" diff --git a/owlps-positioning/src/fbcm.hh b/owlps-positioning/src/fbcm.hh index b210be9..3a184e2 100644 --- a/owlps-positioning/src/fbcm.hh +++ b/owlps-positioning/src/fbcm.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_FBCM_HH_ #define _OWLPS_POSITIONING_FBCM_HH_ diff --git a/owlps-positioning/src/frbhmbasic.cc b/owlps-positioning/src/frbhmbasic.cc index 1800a9d..41aebec 100644 --- a/owlps-positioning/src/frbhmbasic.cc +++ b/owlps-positioning/src/frbhmbasic.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "frbhmbasic.hh" diff --git a/owlps-positioning/src/frbhmbasic.hh b/owlps-positioning/src/frbhmbasic.hh index 7f65392..f8a5c1e 100644 --- a/owlps-positioning/src/frbhmbasic.hh +++ b/owlps-positioning/src/frbhmbasic.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_FRBHMBASIC_HH_ #define _OWLPS_POSITIONING_FRBHMBASIC_HH_ diff --git a/owlps-positioning/src/input.cc b/owlps-positioning/src/input.cc index 27a0f87..0cbf78f 100644 --- a/owlps-positioning/src/input.cc +++ b/owlps-positioning/src/input.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "input.hh" #include "inputcsv.hh" #include "inputudpsocket.hh" diff --git a/owlps-positioning/src/input.hh b/owlps-positioning/src/input.hh index 865a941..1152a50 100644 --- a/owlps-positioning/src/input.hh +++ b/owlps-positioning/src/input.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_INPUT_HH_ #define _OWLPS_POSITIONING_INPUT_HH_ diff --git a/owlps-positioning/src/inputcsv.cc b/owlps-positioning/src/inputcsv.cc index b3f72b9..1f4b705 100644 --- a/owlps-positioning/src/inputcsv.cc +++ b/owlps-positioning/src/inputcsv.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "inputcsv.hh" #include "posutil.hh" #include "posexcept.hh" diff --git a/owlps-positioning/src/inputcsv.hh b/owlps-positioning/src/inputcsv.hh index de75abe..0688144 100644 --- a/owlps-positioning/src/inputcsv.hh +++ b/owlps-positioning/src/inputcsv.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_INPUTCSV_HH_ #define _OWLPS_POSITIONING_INPUTCSV_HH_ diff --git a/owlps-positioning/src/inputdatareader.cc b/owlps-positioning/src/inputdatareader.cc index 810864c..660fac4 100644 --- a/owlps-positioning/src/inputdatareader.cc +++ b/owlps-positioning/src/inputdatareader.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "inputdatareader.hh" #include "accesspointsreadercsv.hh" #include "mobilesreadercsv.hh" diff --git a/owlps-positioning/src/inputdatareader.hh b/owlps-positioning/src/inputdatareader.hh index 6af1b00..9940762 100644 --- a/owlps-positioning/src/inputdatareader.hh +++ b/owlps-positioning/src/inputdatareader.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_INPUTDATAREADER_HH_ #define _OWLPS_POSITIONING_INPUTDATAREADER_HH_ diff --git a/owlps-positioning/src/inputlogcsv.cc b/owlps-positioning/src/inputlogcsv.cc index 686fb15..84ceed5 100644 --- a/owlps-positioning/src/inputlogcsv.cc +++ b/owlps-positioning/src/inputlogcsv.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "inputlogcsv.hh" #include "posexcept.hh" #include "mobile.hh" diff --git a/owlps-positioning/src/inputlogcsv.hh b/owlps-positioning/src/inputlogcsv.hh index 528d978..ea6c215 100644 --- a/owlps-positioning/src/inputlogcsv.hh +++ b/owlps-positioning/src/inputlogcsv.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_INPUTLOGCSV_HH_ #define _OWLPS_POSITIONING_INPUTLOGCSV_HH_ diff --git a/owlps-positioning/src/inputlogmedium.hh b/owlps-positioning/src/inputlogmedium.hh index 31a7913..5bff286 100644 --- a/owlps-positioning/src/inputlogmedium.hh +++ b/owlps-positioning/src/inputlogmedium.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_INPUTLOGMEDIUM_HH_ #define _OWLPS_POSITIONING_INPUTLOGMEDIUM_HH_ diff --git a/owlps-positioning/src/inputmedium.cc b/owlps-positioning/src/inputmedium.cc index fa48029..d628c67 100644 --- a/owlps-positioning/src/inputmedium.cc +++ b/owlps-positioning/src/inputmedium.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "inputmedium.hh" #include "calibrationrequest.hh" #include "stock.hh" diff --git a/owlps-positioning/src/inputmedium.hh b/owlps-positioning/src/inputmedium.hh index d2e5283..4dd344a 100644 --- a/owlps-positioning/src/inputmedium.hh +++ b/owlps-positioning/src/inputmedium.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_INPUTMEDIUM_HH_ #define _OWLPS_POSITIONING_INPUTMEDIUM_HH_ diff --git a/owlps-positioning/src/inputudpsocket.cc b/owlps-positioning/src/inputudpsocket.cc index 6944c7e..803a804 100644 --- a/owlps-positioning/src/inputudpsocket.cc +++ b/owlps-positioning/src/inputudpsocket.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "inputudpsocket.hh" #include "posexcept.hh" #include "stock.hh" diff --git a/owlps-positioning/src/inputudpsocket.hh b/owlps-positioning/src/inputudpsocket.hh index a3a6450..2039991 100644 --- a/owlps-positioning/src/inputudpsocket.hh +++ b/owlps-positioning/src/inputudpsocket.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_INPUTUDPSOCKET_HH_ #define _OWLPS_POSITIONING_INPUTUDPSOCKET_HH_ diff --git a/owlps-positioning/src/interlinknetworks.cc b/owlps-positioning/src/interlinknetworks.cc index 7f6daea..f70b790 100644 --- a/owlps-positioning/src/interlinknetworks.cc +++ b/owlps-positioning/src/interlinknetworks.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "interlinknetworks.hh" diff --git a/owlps-positioning/src/interlinknetworks.hh b/owlps-positioning/src/interlinknetworks.hh index ae67fde..b835394 100644 --- a/owlps-positioning/src/interlinknetworks.hh +++ b/owlps-positioning/src/interlinknetworks.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_INTERLINKNETWORKS_HH_ #define _OWLPS_POSITIONING_INTERLINKNETWORKS_HH_ diff --git a/owlps-positioning/src/measurement.cc b/owlps-positioning/src/measurement.cc index 3c734d6..c74cb3c 100644 --- a/owlps-positioning/src/measurement.cc +++ b/owlps-positioning/src/measurement.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "measurement.hh" #include "posexcept.hh" diff --git a/owlps-positioning/src/measurement.hh b/owlps-positioning/src/measurement.hh index 1cf09a0..449fb54 100644 --- a/owlps-positioning/src/measurement.hh +++ b/owlps-positioning/src/measurement.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_MEASUREMENT_HH_ #define _OWLPS_POSITIONING_MEASUREMENT_HH_ diff --git a/owlps-positioning/src/minmax.cc b/owlps-positioning/src/minmax.cc index ac51036..67be584 100644 --- a/owlps-positioning/src/minmax.cc +++ b/owlps-positioning/src/minmax.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "minmax.hh" #include "accesspoint.hh" diff --git a/owlps-positioning/src/minmax.hh b/owlps-positioning/src/minmax.hh index 44385cd..f74261d 100644 --- a/owlps-positioning/src/minmax.hh +++ b/owlps-positioning/src/minmax.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_MINMAX_HH_ #define _OWLPS_POSITIONING_MINMAX_HH_ diff --git a/owlps-positioning/src/mobile.cc b/owlps-positioning/src/mobile.cc index 3f4e235..a97bc57 100644 --- a/owlps-positioning/src/mobile.cc +++ b/owlps-positioning/src/mobile.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "mobile.hh" diff --git a/owlps-positioning/src/mobile.hh b/owlps-positioning/src/mobile.hh index 11f8f8a..18b1b2d 100644 --- a/owlps-positioning/src/mobile.hh +++ b/owlps-positioning/src/mobile.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_MOBILE_HH_ #define _OWLPS_POSITIONING_MOBILE_HH_ diff --git a/owlps-positioning/src/mobilesreadercsv.cc b/owlps-positioning/src/mobilesreadercsv.cc index f628df3..a0c593e 100644 --- a/owlps-positioning/src/mobilesreadercsv.cc +++ b/owlps-positioning/src/mobilesreadercsv.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "mobilesreadercsv.hh" #include "point3d.hh" #include "stock.hh" diff --git a/owlps-positioning/src/mobilesreadercsv.hh b/owlps-positioning/src/mobilesreadercsv.hh index 50e2324..6aaec7a 100644 --- a/owlps-positioning/src/mobilesreadercsv.hh +++ b/owlps-positioning/src/mobilesreadercsv.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_MOBILESREADERCSV_HH_ #define _OWLPS_POSITIONING_MOBILESREADERCSV_HH_ diff --git a/owlps-positioning/src/multilaterationalgorithm.cc b/owlps-positioning/src/multilaterationalgorithm.cc index ca3cd3b..33c594e 100644 --- a/owlps-positioning/src/multilaterationalgorithm.cc +++ b/owlps-positioning/src/multilaterationalgorithm.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "multilaterationalgorithm.hh" #include "minmax.hh" #include "mobile.hh" diff --git a/owlps-positioning/src/multilaterationalgorithm.hh b/owlps-positioning/src/multilaterationalgorithm.hh index 7aab4e0..6818d5c 100644 --- a/owlps-positioning/src/multilaterationalgorithm.hh +++ b/owlps-positioning/src/multilaterationalgorithm.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_MULTILATERATIONALGORITHM_HH_ #define _OWLPS_POSITIONING_MULTILATERATIONALGORITHM_HH_ diff --git a/owlps-positioning/src/multilaterationmethod.hh b/owlps-positioning/src/multilaterationmethod.hh index d8860b5..d79eb23 100644 --- a/owlps-positioning/src/multilaterationmethod.hh +++ b/owlps-positioning/src/multilaterationmethod.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_MULTILATERATIONMETHOD_HH_ #define _OWLPS_POSITIONING_MULTILATERATIONMETHOD_HH_ diff --git a/owlps-positioning/src/nss.cc b/owlps-positioning/src/nss.cc index cb1d19e..44b0d77 100644 --- a/owlps-positioning/src/nss.cc +++ b/owlps-positioning/src/nss.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "nss.hh" #include "stock.hh" #include "configuration.hh" diff --git a/owlps-positioning/src/nss.hh b/owlps-positioning/src/nss.hh index 6525a2f..7077d32 100644 --- a/owlps-positioning/src/nss.hh +++ b/owlps-positioning/src/nss.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_NSS_HH_ #define _OWLPS_POSITIONING_NSS_HH_ diff --git a/owlps-positioning/src/output.cc b/owlps-positioning/src/output.cc index 43e115e..92ded0f 100644 --- a/owlps-positioning/src/output.cc +++ b/owlps-positioning/src/output.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "output.hh" #include "configuration.hh" #include "posexcept.hh" diff --git a/owlps-positioning/src/output.hh b/owlps-positioning/src/output.hh index 1a5b26a..ef63eb2 100644 --- a/owlps-positioning/src/output.hh +++ b/owlps-positioning/src/output.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_OUTPUT_HH_ #define _OWLPS_POSITIONING_OUTPUT_HH_ diff --git a/owlps-positioning/src/outputcsv.cc b/owlps-positioning/src/outputcsv.cc index 6acaf03..7c7722f 100644 --- a/owlps-positioning/src/outputcsv.cc +++ b/owlps-positioning/src/outputcsv.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "outputcsv.hh" #include "resultlist.hh" diff --git a/owlps-positioning/src/outputcsv.hh b/owlps-positioning/src/outputcsv.hh index 056aa12..c8c3a0e 100644 --- a/owlps-positioning/src/outputcsv.hh +++ b/owlps-positioning/src/outputcsv.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_OUTPUTCSV_HH_ #define _OWLPS_POSITIONING_OUTPUTCSV_HH_ diff --git a/owlps-positioning/src/outputmedium.hh b/owlps-positioning/src/outputmedium.hh index 0116264..57f3dd9 100644 --- a/owlps-positioning/src/outputmedium.hh +++ b/owlps-positioning/src/outputmedium.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_OUTPUTMEDIUM_HH_ #define _OWLPS_POSITIONING_OUTPUTMEDIUM_HH_ diff --git a/owlps-positioning/src/outputnetworksocket.cc b/owlps-positioning/src/outputnetworksocket.cc index 3243d71..b8d1183 100644 --- a/owlps-positioning/src/outputnetworksocket.cc +++ b/owlps-positioning/src/outputnetworksocket.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "outputnetworksocket.hh" #include "resultlist.hh" #include "result.hh" diff --git a/owlps-positioning/src/outputnetworksocket.hh b/owlps-positioning/src/outputnetworksocket.hh index a6b41f7..8824d1f 100644 --- a/owlps-positioning/src/outputnetworksocket.hh +++ b/owlps-positioning/src/outputnetworksocket.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_OUTPUTNETWORKSOCKET_HH_ #define _OWLPS_POSITIONING_OUTPUTNETWORKSOCKET_HH_ diff --git a/owlps-positioning/src/outputtcpsocketevaal.cc b/owlps-positioning/src/outputtcpsocketevaal.cc index 2415403..45ffb49 100644 --- a/owlps-positioning/src/outputtcpsocketevaal.cc +++ b/owlps-positioning/src/outputtcpsocketevaal.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "outputtcpsocketevaal.hh" #include "request.hh" #include "resultlist.hh" diff --git a/owlps-positioning/src/outputtcpsocketevaal.hh b/owlps-positioning/src/outputtcpsocketevaal.hh index cf8c30e..a089abe 100644 --- a/owlps-positioning/src/outputtcpsocketevaal.hh +++ b/owlps-positioning/src/outputtcpsocketevaal.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_OUTPUTTCPSOCKETEVAAL_HH_ #define _OWLPS_POSITIONING_OUTPUTTCPSOCKETEVAAL_HH_ diff --git a/owlps-positioning/src/outputterminal.cc b/owlps-positioning/src/outputterminal.cc index 6473940..24f305b 100644 --- a/owlps-positioning/src/outputterminal.cc +++ b/owlps-positioning/src/outputterminal.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "outputterminal.hh" #include "resultlist.hh" #include "configuration.hh" diff --git a/owlps-positioning/src/outputterminal.hh b/owlps-positioning/src/outputterminal.hh index 7fb0a08..556994e 100644 --- a/owlps-positioning/src/outputterminal.hh +++ b/owlps-positioning/src/outputterminal.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_OUTPUTTERMINAL_HH_ #define _OWLPS_POSITIONING_OUTPUTTERMINAL_HH_ diff --git a/owlps-positioning/src/outputudpsocket.cc b/owlps-positioning/src/outputudpsocket.cc index 1984e04..85205a2 100644 --- a/owlps-positioning/src/outputudpsocket.cc +++ b/owlps-positioning/src/outputudpsocket.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "outputudpsocket.hh" #include "request.hh" #include "resultlist.hh" diff --git a/owlps-positioning/src/outputudpsocket.hh b/owlps-positioning/src/outputudpsocket.hh index 9ab40ad..5917184 100644 --- a/owlps-positioning/src/outputudpsocket.hh +++ b/owlps-positioning/src/outputudpsocket.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_OUTPUTUDPSOCKET_HH_ #define _OWLPS_POSITIONING_OUTPUTUDPSOCKET_HH_ diff --git a/owlps-positioning/src/owlps-positioning.cc b/owlps-positioning/src/owlps-positioning.cc index d0807d3..f86146c 100644 --- a/owlps-positioning/src/owlps-positioning.cc +++ b/owlps-positioning/src/owlps-positioning.cc @@ -1,3 +1,13 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the main source file of OwlPS Positioning, the program that + * computes the position of the mobile terminals. + */ + + #include "userinterface.hh" #include "inputdatareader.hh" #include "stock.hh" diff --git a/owlps-positioning/src/point3d.cc b/owlps-positioning/src/point3d.cc index 045725d..8c9cea5 100644 --- a/owlps-positioning/src/point3d.cc +++ b/owlps-positioning/src/point3d.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "point3d.hh" #include "posutil.hh" #include "posexcept.hh" diff --git a/owlps-positioning/src/point3d.hh b/owlps-positioning/src/point3d.hh index 45ba518..543e841 100644 --- a/owlps-positioning/src/point3d.hh +++ b/owlps-positioning/src/point3d.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_POINT3D_HH_ #define _OWLPS_POSITIONING_POINT3D_HH_ diff --git a/owlps-positioning/src/posexcept.cc b/owlps-positioning/src/posexcept.cc index 10d1c01..cf0963d 100644 --- a/owlps-positioning/src/posexcept.cc +++ b/owlps-positioning/src/posexcept.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "posexcept.hh" #include diff --git a/owlps-positioning/src/posexcept.hh b/owlps-positioning/src/posexcept.hh index 80a78fc..aa29f7c 100644 --- a/owlps-positioning/src/posexcept.hh +++ b/owlps-positioning/src/posexcept.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_POSEXCEPT_HH_ #define _OWLPS_POSITIONING_POSEXCEPT_HH_ diff --git a/owlps-positioning/src/positioning.cc b/owlps-positioning/src/positioning.cc index c2fad63..be9e137 100644 --- a/owlps-positioning/src/positioning.cc +++ b/owlps-positioning/src/positioning.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "positioning.hh" #include "realposition.hh" #include "fbcm.hh" diff --git a/owlps-positioning/src/positioning.hh b/owlps-positioning/src/positioning.hh index fc7b685..b01619a 100644 --- a/owlps-positioning/src/positioning.hh +++ b/owlps-positioning/src/positioning.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_POSITIONING_HH_ #define _OWLPS_POSITIONING_POSITIONING_HH_ diff --git a/owlps-positioning/src/positioningalgorithm.hh b/owlps-positioning/src/positioningalgorithm.hh index 748cf54..b3756fd 100644 --- a/owlps-positioning/src/positioningalgorithm.hh +++ b/owlps-positioning/src/positioningalgorithm.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_POSITIONINGALGORITHM_HH_ #define _OWLPS_POSITIONING_POSITIONINGALGORITHM_HH_ diff --git a/owlps-positioning/src/posutil.cc b/owlps-positioning/src/posutil.cc index b88e8da..ef17518 100644 --- a/owlps-positioning/src/posutil.cc +++ b/owlps-positioning/src/posutil.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "posutil.hh" #include "posexcept.hh" #include "stock.hh" diff --git a/owlps-positioning/src/posutil.hh b/owlps-positioning/src/posutil.hh index 0a5cb7f..9d86a70 100644 --- a/owlps-positioning/src/posutil.hh +++ b/owlps-positioning/src/posutil.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_POSUTIL_HH_ #define _OWLPS_POSITIONING_POSUTIL_HH_ diff --git a/owlps-positioning/src/realposition.cc b/owlps-positioning/src/realposition.cc index 0a9c32f..b1117a8 100644 --- a/owlps-positioning/src/realposition.cc +++ b/owlps-positioning/src/realposition.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "realposition.hh" #include "calibrationrequest.hh" #include "referencepoint.hh" diff --git a/owlps-positioning/src/realposition.hh b/owlps-positioning/src/realposition.hh index 97dc42b..bd61a37 100644 --- a/owlps-positioning/src/realposition.hh +++ b/owlps-positioning/src/realposition.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_REALPOSITION_HH_ #define _OWLPS_POSITIONING_REALPOSITION_HH_ diff --git a/owlps-positioning/src/referencepoint.cc b/owlps-positioning/src/referencepoint.cc index 91614b8..4e0f823 100644 --- a/owlps-positioning/src/referencepoint.cc +++ b/owlps-positioning/src/referencepoint.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "referencepoint.hh" #include "measurement.hh" #include "calibrationrequest.hh" diff --git a/owlps-positioning/src/referencepoint.hh b/owlps-positioning/src/referencepoint.hh index d0546be..7dba262 100644 --- a/owlps-positioning/src/referencepoint.hh +++ b/owlps-positioning/src/referencepoint.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_REFERENCEPOINT_HH_ #define _OWLPS_POSITIONING_REFERENCEPOINT_HH_ diff --git a/owlps-positioning/src/request.cc b/owlps-positioning/src/request.cc index 9573e81..98d2b57 100644 --- a/owlps-positioning/src/request.cc +++ b/owlps-positioning/src/request.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "request.hh" #include "mobile.hh" diff --git a/owlps-positioning/src/request.hh b/owlps-positioning/src/request.hh index ce3200a..20f379c 100644 --- a/owlps-positioning/src/request.hh +++ b/owlps-positioning/src/request.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_REQUEST_HH_ #define _OWLPS_POSITIONING_REQUEST_HH_ diff --git a/owlps-positioning/src/result.cc b/owlps-positioning/src/result.cc index 561e7b2..1dfdd8d 100644 --- a/owlps-positioning/src/result.cc +++ b/owlps-positioning/src/result.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "result.hh" #include "request.hh" #include "area.hh" diff --git a/owlps-positioning/src/result.hh b/owlps-positioning/src/result.hh index fd724ea..d9eca7b 100644 --- a/owlps-positioning/src/result.hh +++ b/owlps-positioning/src/result.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_RESULT_HH_ #define _OWLPS_POSITIONING_RESULT_HH_ diff --git a/owlps-positioning/src/resultlist.cc b/owlps-positioning/src/resultlist.cc index e1888c7..35a5cff 100644 --- a/owlps-positioning/src/resultlist.cc +++ b/owlps-positioning/src/resultlist.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "resultlist.hh" #include "request.hh" #include "mobile.hh" diff --git a/owlps-positioning/src/resultlist.hh b/owlps-positioning/src/resultlist.hh index 6a03e80..3c5f236 100644 --- a/owlps-positioning/src/resultlist.hh +++ b/owlps-positioning/src/resultlist.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_RESULTLIST_HH_ #define _OWLPS_POSITIONING_RESULTLIST_HH_ diff --git a/owlps-positioning/src/stock.cc b/owlps-positioning/src/stock.cc index 1967d18..1d7b89d 100644 --- a/owlps-positioning/src/stock.cc +++ b/owlps-positioning/src/stock.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "stock.hh" #include "configuration.hh" #include "posexcept.hh" diff --git a/owlps-positioning/src/stock.hh b/owlps-positioning/src/stock.hh index 4f75ef2..7e57cfa 100644 --- a/owlps-positioning/src/stock.hh +++ b/owlps-positioning/src/stock.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_STOCK_HH_ #define _OWLPS_POSITIONING_STOCK_HH_ diff --git a/owlps-positioning/src/textfilereader.cc b/owlps-positioning/src/textfilereader.cc index 75e967c..3207e22 100644 --- a/owlps-positioning/src/textfilereader.cc +++ b/owlps-positioning/src/textfilereader.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "textfilereader.hh" #include "posexcept.hh" diff --git a/owlps-positioning/src/textfilereader.hh b/owlps-positioning/src/textfilereader.hh index b8efa53..bc26a6e 100644 --- a/owlps-positioning/src/textfilereader.hh +++ b/owlps-positioning/src/textfilereader.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_TEXTFILEREADER_HH_ #define _OWLPS_POSITIONING_TEXTFILEREADER_HH_ diff --git a/owlps-positioning/src/textfilewriter.cc b/owlps-positioning/src/textfilewriter.cc index 0e3158f..5bd712d 100644 --- a/owlps-positioning/src/textfilewriter.cc +++ b/owlps-positioning/src/textfilewriter.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "textfilewriter.hh" #include "configuration.hh" #include "posexcept.hh" diff --git a/owlps-positioning/src/textfilewriter.hh b/owlps-positioning/src/textfilewriter.hh index 09a5466..a45138f 100644 --- a/owlps-positioning/src/textfilewriter.hh +++ b/owlps-positioning/src/textfilewriter.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_TEXTFILEWRITER_HH_ #define _OWLPS_POSITIONING_TEXTFILEWRITER_HH_ diff --git a/owlps-positioning/src/timestamp.cc b/owlps-positioning/src/timestamp.cc index d826d38..964dfd1 100644 --- a/owlps-positioning/src/timestamp.cc +++ b/owlps-positioning/src/timestamp.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "timestamp.hh" #include diff --git a/owlps-positioning/src/timestamp.hh b/owlps-positioning/src/timestamp.hh index dcbd23a..3944997 100644 --- a/owlps-positioning/src/timestamp.hh +++ b/owlps-positioning/src/timestamp.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_TIMESTAMP_HH_ #define _OWLPS_POSITIONING_TIMESTAMP_HH_ diff --git a/owlps-positioning/src/topologyreadercsv.cc b/owlps-positioning/src/topologyreadercsv.cc index 27c32eb..68e3686 100644 --- a/owlps-positioning/src/topologyreadercsv.cc +++ b/owlps-positioning/src/topologyreadercsv.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "topologyreadercsv.hh" #include "posexcept.hh" #include "stock.hh" diff --git a/owlps-positioning/src/topologyreadercsv.hh b/owlps-positioning/src/topologyreadercsv.hh index 9077559..352799d 100644 --- a/owlps-positioning/src/topologyreadercsv.hh +++ b/owlps-positioning/src/topologyreadercsv.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_TOPOLOGYREADERCSV_HH_ #define _OWLPS_POSITIONING_TOPOLOGYREADERCSV_HH_ diff --git a/owlps-positioning/src/userinterface.cc b/owlps-positioning/src/userinterface.cc index 6d7984d..396939e 100644 --- a/owlps-positioning/src/userinterface.cc +++ b/owlps-positioning/src/userinterface.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "userinterface.hh" #include "configuration.hh" diff --git a/owlps-positioning/src/userinterface.hh b/owlps-positioning/src/userinterface.hh index 8a23420..8c89f3f 100644 --- a/owlps-positioning/src/userinterface.hh +++ b/owlps-positioning/src/userinterface.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_USERINTERFACE_HH_ #define _OWLPS_POSITIONING_USERINTERFACE_HH_ diff --git a/owlps-positioning/src/waypoint.cc b/owlps-positioning/src/waypoint.cc index 0b723d8..b4846c0 100644 --- a/owlps-positioning/src/waypoint.cc +++ b/owlps-positioning/src/waypoint.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "waypoint.hh" #include "building.hh" diff --git a/owlps-positioning/src/waypoint.hh b/owlps-positioning/src/waypoint.hh index ac294ec..c3e213a 100644 --- a/owlps-positioning/src/waypoint.hh +++ b/owlps-positioning/src/waypoint.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_WAYPOINT_HH_ #define _OWLPS_POSITIONING_WAYPOINT_HH_ diff --git a/owlps-positioning/src/wifidevice.cc b/owlps-positioning/src/wifidevice.cc index aff2b7c..4ade482 100644 --- a/owlps-positioning/src/wifidevice.cc +++ b/owlps-positioning/src/wifidevice.cc @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #include "wifidevice.hh" using namespace std ; diff --git a/owlps-positioning/src/wifidevice.hh b/owlps-positioning/src/wifidevice.hh index fc11b3a..49336d3 100644 --- a/owlps-positioning/src/wifidevice.hh +++ b/owlps-positioning/src/wifidevice.hh @@ -1,3 +1,10 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + */ + + #ifndef _OWLPS_POSITIONING_WIFIDEVICE_HH_ #define _OWLPS_POSITIONING_WIFIDEVICE_HH_ diff --git a/owlps-udp-to-http/owlps-udp-to-http.c b/owlps-udp-to-http/owlps-udp-to-http.c index 1b24d73..8b33f6b 100644 --- a/owlps-udp-to-http/owlps-udp-to-http.c +++ b/owlps-udp-to-http/owlps-udp-to-http.c @@ -1,4 +1,10 @@ /* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the main source file of OwlPS UDP-to-HTTP. + * * This program listens for results sent by OwlPS Positioning on a UDP * socket, and listens for a client on a TCP socket. The client is * expected to send an HTTP GET request, with the request string as the @@ -48,6 +54,7 @@ * be empty). */ + #include "owlps-udp-to-http.h" #include diff --git a/owlps-udp-to-http/owlps-udp-to-http.h b/owlps-udp-to-http/owlps-udp-to-http.h index 9ceb98a..f395ca6 100644 --- a/owlps-udp-to-http/owlps-udp-to-http.h +++ b/owlps-udp-to-http/owlps-udp-to-http.h @@ -1,3 +1,12 @@ +/* + * This file is part of the Owl Positioning System (OwlPS). + * OwlPS is a project of the University of Franche-Comté + * (Université de Franche-Comté), France. + * + * This is the header file of OwlPS UDP-to-HTTP. + */ + + #ifndef _OWLPS_UDP_TO_HTTP_H_ #define _OWLPS_UDP_TO_HTTP_H_