Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
518 B

  1. #include "StdAfx.h"
  2. #include "ADMTScript.h"
  3. #include "Options.h"
  4. #include "ADMTCommon.h"
  5. //---------------------------------------------------------------------------
  6. // Options Class
  7. //---------------------------------------------------------------------------
  8. // Constructor
  9. COptions::COptions(const CVarSet& rVarSet) :
  10. CVarSet(rVarSet)
  11. {
  12. Put(DCTVS_Options_AppendToLogs, true);
  13. Put(DCTVS_Options_Logfile, GetMigrationLogPath());
  14. Put(DCTVS_Options_DispatchLog, GetDispatchLogPath());
  15. }