diff options
Diffstat (limited to 'graphics/fractorama/files/patch-src::lib::fractal::DoubleNode.h')
-rw-r--r-- | graphics/fractorama/files/patch-src::lib::fractal::DoubleNode.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/graphics/fractorama/files/patch-src::lib::fractal::DoubleNode.h b/graphics/fractorama/files/patch-src::lib::fractal::DoubleNode.h new file mode 100644 index 000000000000..1b452064f7cc --- /dev/null +++ b/graphics/fractorama/files/patch-src::lib::fractal::DoubleNode.h @@ -0,0 +1,12 @@ +--- lib/fractal/DoubleNode.h.orig Fri Oct 24 22:31:52 2003 ++++ lib/fractal/DoubleNode.h Tue Mar 2 23:08:44 2004 +@@ -1,7 +1,8 @@ + #ifndef _DOUBLE_NODE_H_ + # define _DOUBLE_NODE_H_ + +-class ostream; ++#include <iostream> ++using namespace std; + + #define RND(x) ((x) >= 0.0 ? (int)((x) + 0.5) : (int)((x) - 0.5)) + |