diff Samples/Sdl/SdlHelpers.h @ 1388:240531afdd2d

Dead code removal + removed untested Dicomweb + SingleFrameViewer wasm fixes
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 28 Apr 2020 08:57:39 +0200
parents dfb48f0794b1
children ffdb82850e98
line wrap: on
line diff
--- a/Samples/Sdl/SdlHelpers.h	Mon Apr 27 16:49:03 2020 +0200
+++ b/Samples/Sdl/SdlHelpers.h	Tue Apr 28 08:57:39 2020 +0200
@@ -93,44 +93,5 @@
     p.SetControlModifier(modifiers & KeyboardModifiers_Control);
     p.SetShiftModifier(modifiers & KeyboardModifiers_Shift);
   }
-
-  //inline void ParseCommonCommandLineArguments()
-  //{
-
-  //  po::options_description description("Usage:");
-
-  //  description.add_options()
-  //    ("trace", "Enable TRACE logging mode (default: false)")
-  //    ("info", "Enable INFO logging mode (default: false)")
-  //    ("orthanc", po::value<string>()->default_value("http://localhost:8042"), "Base URL of the Orthanc instance")
-
-  //  po::variables_map vm;
-  //  po::store(po::command_line_parser(argc, argv).options(description).run(), vm);
-  //  po::notify(vm);
-
-  //  if (vm.count("help"))
-  //  {
-
-  //  }
-
-  //  if (vm.count("compression"))
-  //  {
-  //    cout << "Compression level " << vm["compression"].as<int>() << endl;
-  //  }
-
-  //  return 0;
-
-  //}
-
-  //inline void DeclareOptionAndDefault(boost::program_options::options_description& options,
-  //                             const std::string& flag, const std::string& defaultValue,
-  //                             std::string help = "")
-  //{
-  //  description.add_options()
-  //    (flag, po::value<string>()->default_value(defaultValue), help);
-  //}
-
-  //inline void ProcessOptions
-
 }