yatbcpp  0.0.1
Yet another Telegram Bot CPP Library
exception_essential_key_missing_ostream.cc
Go to the documentation of this file.
1 //
2 // Created by norbert on 21.08.17.
3 //
4 
5 #include <ostream>
7 namespace yatbcpp {
8 
9  std::ostream& operator<< (std::ostream &o,const essential_key_missing& essentialKeyMissing) {
10  using namespace std;
11  return o << "FILE_NOT_FOUND EXCEPTION<<" << essentialKeyMissing.message << ">>";
12  }
13  std::ostream& operator<< (std::ostream &o,const essential_key_missing* essentialKeyMissing) {
14  return o<<*essentialKeyMissing;
15  }
16 
17 }
std::ostream & operator<<(std::ostream &o, const curl_error &curlError)
Definition: Bot.h:27