aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2004-08-31 15:26:40 (GMT)
committerrathnor <rathnor>2004-08-31 15:26:40 (GMT)
commitd17bf39a43a7581773c67d496e4022499d59cd26 (patch)
tree89e964e0e9a207d726e4ffefb88b19c51c591817 /src/Window.cc
parent6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff)
downloadfluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.zip
fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2
add autoconf check for std c++ headers
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc20
1 files changed, 16 insertions, 4 deletions
diff --git a/src/Window.cc b/src/Window.cc
index c3f6190..8187c15 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Window.cc,v 1.297 2004/08/29 12:35:29 rathnor Exp $ 25// $Id: Window.cc,v 1.298 2004/08/31 15:26:38 rathnor Exp $
26 26
27#include "Window.hh" 27#include "Window.hh"
28 28
@@ -61,10 +61,22 @@
61#include <X11/Xatom.h> 61#include <X11/Xatom.h>
62#include <X11/keysym.h> 62#include <X11/keysym.h>
63 63
64#include <cstring> 64#ifdef HAVE_CSTRING
65#include <cstdio> 65 #include <cstring>
66#else
67 #include <string.h>
68#endif
69#ifdef HAVE_CSTDIO
70 #include <cstdio>
71#else
72 #include <stdio.h>
73#endif
66#include <iostream> 74#include <iostream>
67#include <cassert> 75#ifdef HAVE_CASSERT
76 #include <cassert>
77#else
78 #include <assert.h>
79#endif
68#include <functional> 80#include <functional>
69#include <algorithm> 81#include <algorithm>
70 82