Skip to content

Commit

Permalink
indicate that these data represent structures in printing
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-urban committed Mar 1, 2024
1 parent aaae71f commit 98c10d3
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ project(
'cpp',
license: 'MPL-2.0',

version: '0.15.1',
version: '0.15.2',
default_options: ['warning_level=2', 'buildtype=release', 'cpp_std=c++20'],
meson_version: '>=1.3.2' #first version with clang-cl openmp support
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//sourcehash: 507583790409b015833435e5d15f33a87a7d36b651347729ea4c417953c32c3e
//sourcehash: 2cfac54cd52015cc07121279e620b89261e2b340cb161abb9f5b4fa2bc9d5a69

/*
This file contains docstrings for use in the Python bindings.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//sourcehash: 543bfbec8a01ec70a192dd3331c8eeaee91f324bb9ab946fa68bd105358cd2c7
//sourcehash: 49d9546cd810ceb58317b190923ab3621dcfef3dd03b42267826b99fed807c8d

/*
This file contains docstrings for use in the Python bindings.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//sourcehash: d9121f3fe95fb3bd63db73e938adbd630f13a20ab79d39f6cb338c46ae4216c8
//sourcehash: 1a1a4c29e7612ce7f863841996d8895156d90b614dab735258ba6c056539dc32

/*
This file contains docstrings for use in the Python bindings.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//sourcehash: 3c1442da039515cc2d5838906fc8556cc7794f3b80e836b147978b3857a207bc
//sourcehash: ceb07db1173923dfafd056556d042782f841314f76b3dcb34f94ea83d47c0b84

/*
This file contains docstrings for use in the Python bindings.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//sourcehash: 19fc7b0ead21bde262c0b82cd34a6c6978e45e6843d64a461d90f9a4f631e6a6
//sourcehash: 7658f6e68b40270c429f11dfcf21cd71ba42fa632af036f8047cf89a51dc9ed2

/*
This file contains docstrings for use in the Python bindings.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//sourcehash: 97984a6696a6e1977e6a175068728bff6466cb888a85567080d02a7f6f870e57
//sourcehash: f43c18a4036c8fdfcaee7549319fee45e05daae8963423341543dd89fbcb514f

/*
This file contains docstrings for use in the Python bindings.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//sourcehash: 85a7afca209ea443a9fad0564c893079c3be1f701ac506022047e80137419c6c
//sourcehash: 103445feba8f0b47187d50c9f7be59db12fb192ce3c729f0c81ae8d20946a72e

/*
This file contains docstrings for use in the Python bindings.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//sourcehash: f995fd05729df633c948dc555d0edbe51128a7ab9f386e4775b9965fa45d9734
//sourcehash: 46c1f6144ed64d7daccdc10b5fe1b88db8e98ceec79df37c2648736a103b2e59

/*
This file contains docstrings for use in the Python bindings.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//sourcehash: 99efe2cba28c108d0694202a41030c7edd5454abacdec76320277c3139a838b4
//sourcehash: d531382638896ae9ac960bb601f749ba429cbe26bfde00aca6871b83fda311c6

/*
This file contains docstrings for use in the Python bindings.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ struct Geolocation
public:
tools::classhelper::ObjectPrinter __printer__(unsigned int float_precision) const
{
tools::classhelper::ObjectPrinter printer("Geolocation", float_precision);
tools::classhelper::ObjectPrinter printer("Geolocation (struct)", float_precision);

printer.register_value("z", z, "positive downwards, m");
printer.register_value("yaw", yaw, "90 ° at east");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ struct GeolocationLatLon : public Geolocation
// ----- objectprinter -----
tools::classhelper::ObjectPrinter __printer__(unsigned int float_precision) const
{
tools::classhelper::ObjectPrinter printer("GeolocationLatLon", float_precision);
tools::classhelper::ObjectPrinter printer("GeolocationLatLon (struct)", float_precision);

printer.register_string(
"latitude",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ struct GeolocationLocal : public Geolocation
public:
tools::classhelper::ObjectPrinter __printer__(unsigned int float_precision) const
{
tools::classhelper::ObjectPrinter printer("GeolocationLocal", float_precision);
tools::classhelper::ObjectPrinter printer("GeolocationLocal (struct)", float_precision);

printer.register_value("northing", northing, "positive northwards, m");
printer.register_value("easting", easting, "positive eastwards, m");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ struct GeolocationUTM : public GeolocationLocal
public:
tools::classhelper::ObjectPrinter __printer__(unsigned int float_precision) const
{
tools::classhelper::ObjectPrinter printer("GeolocationUTM", float_precision);
tools::classhelper::ObjectPrinter printer("GeolocationUTM (struct)", float_precision);

auto base_printer = GeolocationLocal::__printer__(float_precision);
base_printer.remove_sections();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ struct PositionalOffsets
public:
tools::classhelper::ObjectPrinter __printer__(unsigned int float_precision) const
{
tools::classhelper::ObjectPrinter printer("PositionalOffsets", float_precision);
tools::classhelper::ObjectPrinter printer("PositionalOffsets (struct)", float_precision);

printer.register_string("name", name, "The name of the sensor");
printer.register_value("x", x, "positive forwards, m");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ struct Sensordata
public:
tools::classhelper::ObjectPrinter __printer__(unsigned int float_precision) const
{
tools::classhelper::ObjectPrinter printer("Sensordata", float_precision);
tools::classhelper::ObjectPrinter printer("Sensordata (struct)", float_precision);

printer.register_value("depth", depth, "positive downwards, m");
printer.register_value("heave", heave, "positive upwards, m");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ struct SensordataLatLon : public Sensordata
public:
tools::classhelper::ObjectPrinter __printer__(unsigned int float_precision) const
{
tools::classhelper::ObjectPrinter printer("SensordataLatLon", float_precision);
tools::classhelper::ObjectPrinter printer("SensordataLatLon (struct)", float_precision);

printer.register_string(
"latitude",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ struct SensordataLocal : public Sensordata
public:
tools::classhelper::ObjectPrinter __printer__(unsigned int float_precision) const
{
tools::classhelper::ObjectPrinter printer("SensordataLocal", float_precision);
tools::classhelper::ObjectPrinter printer("SensordataLocal (struct)", float_precision);

printer.register_value("northing", northing, "positive northwards, m");
printer.register_value("easting", easting, "positive eastwards, m");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ struct SensordataUTM : public SensordataLocal
public:
tools::classhelper::ObjectPrinter __printer__(unsigned int float_precision) const
{
tools::classhelper::ObjectPrinter printer("SensordataUTM", float_precision);
tools::classhelper::ObjectPrinter printer("SensordataUTM (struct)", float_precision);

auto base_printer = SensordataLocal::__printer__(float_precision);
base_printer.remove_sections();
Expand Down

0 comments on commit 98c10d3

Please sign in to comment.