1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-02 16:25:41 +00:00
This commit is contained in:
Lu Wang 2013-04-07 14:25:39 +08:00
parent ed2c6c78bf
commit da0b6fcabb
2 changed files with 5 additions and 3 deletions

View File

@ -39,6 +39,4 @@ ostream & Base64Stream::dumpto(ostream & out)
const char * Base64Stream::base64_encoding = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
ostream & operator << (ostream & out, Base64Stream bf) { return bf.dumpto(out); }
} //namespace pdf2htmlEX

View File

@ -24,7 +24,11 @@ private:
static const char * base64_encoding;
};
std::ostream & operator << (std::ostream & out, Base64Stream bf);
inline
std::ostream & operator << (std::ostream & out, Base64Stream bs)
{
return bs.dumpto(out);
}
} //namespace pdf2htmlEX
#endif //BASE64STREAM_H__