Changeset 5763 in ntrip for trunk/BNC/src/PPP/ppp.h


Ignore:
Timestamp:
Aug 4, 2014, 8:41:20 AM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/ppp.h

    r5750 r5763  
    1010
    1111namespace BNC {
     12
     13class pppExcept {
     14 public:
     15  pppExcept(const char* msg) {
     16    _msg = msg;
     17  }
     18  ~pppExcept() {}
     19  std::string what() {return _msg;}
     20 private:
     21  std::string _msg;
     22};
    1223
    1324enum e_pppMode {
Note: See TracChangeset for help on using the changeset viewer.