all repos — fluxbox @ 8e0a3300ad91af096771a6ff805cb0698a9950d7

custom fork of the fluxbox windowmanager

stringstream
fluxgen fluxgen
commit

8e0a3300ad91af096771a6ff805cb0698a9950d7

parent

4a7d0b8434e20d306a670d87cdec8cfe6fd308c5

1 files changed, 19 insertions(+), 0 deletions(-)

jump to
A src/FbTk/stringstream.hh

@@ -0,0 +1,19 @@

+#ifndef FBTK_STRINGSTREAM_HH +#define FBTK_STRINGSTREAM_HH + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif // HAVE_CONFIG_H + +#ifdef HAVE_SSTREAM +#include <sstream> +#define FbTk_istringstream std::istringstream +#elif HAVE_STRSTREAM +#include <strstream> +#define FbTk_istringstream std::istrstream +#else +#error "You dont have sstream or strstream headers!" +#endif // HAVE_STRSTREAM + + +#endif // FBTK_STRINGSTREAM_HH