mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
..
This commit is contained in:
parent
ed2c6c78bf
commit
da0b6fcabb
@ -39,6 +39,4 @@ ostream & Base64Stream::dumpto(ostream & out)
|
|||||||
|
|
||||||
const char * Base64Stream::base64_encoding = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
const char * Base64Stream::base64_encoding = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
||||||
|
|
||||||
ostream & operator << (ostream & out, Base64Stream bf) { return bf.dumpto(out); }
|
|
||||||
|
|
||||||
} //namespace pdf2htmlEX
|
} //namespace pdf2htmlEX
|
||||||
|
@ -24,7 +24,11 @@ private:
|
|||||||
static const char * base64_encoding;
|
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
|
} //namespace pdf2htmlEX
|
||||||
#endif //BASE64STREAM_H__
|
#endif //BASE64STREAM_H__
|
||||||
|
Loading…
Reference in New Issue
Block a user