1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

Include <iostream> without the .h on modern C++

This commit is contained in:
Peter Howkins 2012-03-13 17:31:56 +00:00
parent 3984d5a45b
commit adf14ccd77
2 changed files with 8 additions and 0 deletions

View file

@ -31,7 +31,11 @@
#include "Options.h"
#include <stdlib.h>
#if defined(linux)
#include <iostream>
#else
#include <iostream.h>
#endif
#include <stdio.h>
#include <pwd.h>

View file

@ -75,7 +75,11 @@
#include "dtappgather.h"
#include "DirIterator.h"
#include <stdlib.h>
#if defined(linux)
#include <iostream>
#else
#include <iostream.h>
#endif
Options * options;