where the test would create a dir /feisty_meow if run as root, for storing the ini file.
do need to reevaluate the all users dir option; it makes no sense on linux, although at least we drive it by a simple environment variable. is there even a unix equivalent to that concept of storing for all users? not really, except sort of /etc dir.
#include <application/hoople_main.h>
#include <basis/astring.h>
+#include <basis/environment.h>
#include <basis/guards.h>
#include <configuration/ini_configurator.h>
#include <configuration/section_manager.h>
int test_section_manager::execute()
{
FUNCDEF("execute");
+
+ // prepare the storage area for ini config.
+ environment::set("ALLUSERSPROFILE", environment::get("TEMPORARIES_PILE"));
+
{
astring TEST = "First Test";
ini_configurator ini("t_section_manager_1.ini", ini_configurator::AUTO_STORE);