Name Date Size #Lines LOC

..--

CMakeLists.txtH A D25-Apr-2025875 4132

CreateProjectFiles.batH A D25-Apr-202584 76

README.mdH A D25-Apr-2025933 4331

example.cfgH A D25-Apr-20251.3 KiB5347

example1.cppH A D25-Apr-20251.9 KiB5319

example2.cppH A D25-Apr-20252.2 KiB7236

example3.cppH A D25-Apr-20252.4 KiB6730

examples.cppH A D25-Apr-20252.2 KiB7035

README.md

1
2### Running the examples ###
3
4Expected Console Output:
5
6```C++
7<<< Example 1 >>>
8
9'longitude' setting is out of valid bounds (max: 180). Value was: 1200.35
10Missing 'latitude' setting in configuration file.
11Cannot proceed until all mandatory settings are set.
12
13
14<<< Example 2 >>>
15
16TITLE                           AUTHOR                           PRICE   QTY
17Treasure Island                 Robert Louis Stevenson          $ 29.99  5
18Snow Crash                      Neal Stephenson                 $  9.99  8
19
20
21<<< Example 3 >>>
22
23'longitude' setting is out of valid bounds (max: 180). Value was: 1200.35
24Missing 'latitude' setting in configuration file.
25Cannot proceed until all mandatory settings are set.
26
27Expected Config Layout:
28
29// -- begin --
30name = "<name>";
31abstract = "<unknown>";
32longitude = 0.0;
33latitude = 0.0;
34inventory =
35{
36   movies = ( );
37   books = (
38      {
39         title = "bookXYZ";
40      } );
41};
42// --- end ---
43```