#ifndef __PROGRAM_OPTIONS_PARSER
#define __PROGRAM_OPTIONS_PARSER

#include <string>

namespace program_options
{
  void parse(int argc, char* argv[]);

  const std::string& stl_file();
  const std::string& sb_file();
  const std::string& ref_sb_file();
  bool stl();
  bool ref_sb();
  bool sb();
  bool compare();
  bool GUI();
  void help();                     
};  // namespace program_options

#endif  // __PROGRAM_OPTIONS_PARSER
