~ubuntu-branches/ubuntu/precise/fluxbox/precise

« back to all changes in this revision

Viewing changes to src/FbTk/stringstream.hh

  • Committer: Bazaar Package Importer
  • Author(s): Dmitry E. Oboukhov
  • Date: 2008-07-01 10:38:14 UTC
  • mfrom: (2.1.12 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080701103814-khx2b6il152x9p93
Tags: 1.0.0+deb1-8
* x-dev has been removed from build-depends (out-of-date package).
* Standards-Version bumped to 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef FBTK_STRINGSTREAM_HH
2
 
#define FBTK_STRINGSTREAM_HH
3
 
 
4
 
#ifdef HAVE_CONFIG_H
5
 
#include "config.h"
6
 
#endif // HAVE_CONFIG_H
7
 
 
8
 
#ifdef HAVE_SSTREAM
9
 
#include <sstream>
10
 
#define FbTk_istringstream std::istringstream
11
 
#elif HAVE_STRSTREAM 
12
 
#include <strstream>
13
 
#define FbTk_istringstream std::istrstream
14
 
#else
15
 
#error "You dont have sstream or strstream headers!"
16
 
#endif // HAVE_STRSTREAM
17
 
 
18
 
 
19
 
#endif // FBTK_STRINGSTREAM_HH