Ejemplo n.º 1
0
      static void ApplyArgs(Format& format,
							FirstArg&& firstArg,
							OtherArgs&& ... otherArgs)
      {
		format % firstArg;
		ApplyArgs(format, std::forward<OtherArgs>(otherArgs)...);
      }
Ejemplo n.º 2
0
Environment::Environment(const Args & args)
{
    SetDefaults();
    LoadFromFile(args.optfile);
    ApplyArgs(args);
}