00001 #ifndef CPR_SSLOPTIONS_H 00002 #define CPR_SSLOPTIONS_H 00003 00004 namespace cpr { 00005 00006 class VerifySsl { 00007 public: 00008 VerifySsl() {} 00009 VerifySsl(bool verify); 00010 00011 operator bool() const; 00012 00013 private: 00014 bool verify_ = true; 00015 }; 00016 00017 } // namespace cpr 00018 00019 #endif