Changeset dcd90b2 in nscp for include


Ignore:
Timestamp:
11/23/09 22:54:09 (4 years ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2
Children:
9b3f53c
Parents:
858ecc1
Message:

Added back openssl now builds (and presumably the NRPEClient works with it haven't tested but will do after I get the NRPEListener up and running...)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/program_options_ex.hpp

    r1e0bbec rdcd90b2  
    77class basic_command_line_parser_ex : public boost::program_options::basic_command_line_parser<charT> { 
    88public: 
     9  /* 
    910  static boost::program_options::basic_parsed_options<charT> parse_command_line(int argc, charT* argv[], const boost::program_options::options_description& desc, 
    1011    int style = 0, boost::function1<std::pair<std::string, std::string>, const std::string&> ext = boost::program_options::ext_parser()) 
     
    1213    return basic_command_line_parser_ex<charT>(argc, argv).options(desc).style(style).extra_parser(ext).run(); 
    1314  } 
     15  */ 
    1416 
    1517  template<class charTx, class Iterator> 
     
    3133      ) 
    3234    {} 
    33     /* 
    34 #ifdef _WIN32 
    35     basic_command_line_parser_ex(const std::wstring args)  
    36       : boost::program_options::basic_command_line_parser<charT>(boost::program_options::split_winmain(args)) 
     35    basic_command_line_parser_ex(std::vector<charT> v)  
     36      : boost::program_options::basic_command_line_parser<charT>(v) 
    3737    {} 
    38 #endif 
    39     */ 
    4038 
    4139}; 
Note: See TracChangeset for help on using the changeset viewer.