I\'m trying to make something in Linux, but it complains that it can\'t find iostream.h. What do I need to install to get this file?
The header
#ifndef HEADER_IOSTREAM_H
#define HEADER_IOSTREAM_H
#include
using namespace std; // Beware, this completely defeats the whole point of
// having namespaces and could lead to name clashes; on the
// other hand, code that still includes was
// probably created before namespaces, anyway.
#endif
While this is not exactly identical to the original antiquated header, this should be close enough for most purposes (i.e. there should be either nothing or very few things that you will have to fix).