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```