예제 #1
0
파일: Format.hpp 프로젝트: phere/Format
      static void ApplyArgs(Format& format,
							FirstArg&& firstArg,
							OtherArgs&& ... otherArgs)
      {
		format % firstArg;
		ApplyArgs(format, std::forward<OtherArgs>(otherArgs)...);
      }
예제 #2
0
Environment::Environment(const Args & args)
{
    SetDefaults();
    LoadFromFile(args.optfile);
    ApplyArgs(args);
}