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