From 6cfbf2dee130cc36a72d57adea0e9c04bb31f620 Mon Sep 17 00:00:00 2001 From: Jonathan McCrohan Date: Wed, 12 Oct 2011 21:50:48 +0100 Subject: Initial commit --- libconfig/jmccrohan-example.cfg | 47 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 libconfig/jmccrohan-example.cfg (limited to 'libconfig/jmccrohan-example.cfg') diff --git a/libconfig/jmccrohan-example.cfg b/libconfig/jmccrohan-example.cfg new file mode 100644 index 0000000..b217dfb --- /dev/null +++ b/libconfig/jmccrohan-example.cfg @@ -0,0 +1,47 @@ +// An example configuration file that stores information about a store. + +// Basic store information: +version = "0.99beta"; + +// Store inventory: +modbusdevices = +{ + monday = ( + { time = "05:00"; + author = "Robert Louis Stevenson"; + price = 29.99; + qty = 5; }, + { title = "Snow Crash"; + author = "Neal Stephenson"; + price = 9.99; + qty = 8; } + ); + + movies = ( { title = "Brazil"; + media = "DVD"; + price = 19.99; + qty = 11; }, + { title = "The City of Lost Children"; + media = "DVD"; + price = 18.99; + qty = 5; }, + { title = "Memento"; + media = "Blu-Ray"; + price = 24.99; + qty = 20; + }, + { title = "Howard the Duck"; } + ); +}; + +// Store hours: +hours = +{ + mon = { open = 9; close = 18; }; + tue = { open = 9; close = 18; }; + wed = { open = 9; close = 18; }; + thu = { open = 9; close = 18; }; + fri = { open = 9; close = 20; }; + sat = { open = 9; close = 20; }; + sun = { open = 11; close = 16; }; +}; -- cgit v1.2.3