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:
parent
3984d5a45b
commit
adf14ccd77
2 changed files with 8 additions and 0 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue