summaryrefslogtreecommitdiff
path: root/FL/Fl_Image.H
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-01-07 20:40:02 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-01-07 20:40:02 +0000
commitbccdafdaef5fdf69628984d8f6953145bc831a53 (patch)
tree8e2edbab6fedf1893463a8b4b8f69f8643082f3a /FL/Fl_Image.H
parenta55363086d594e4df9573144b493da87b667fd27 (diff)
Fixed from Teun.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1919 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Image.H')
-rw-r--r--FL/Fl_Image.H8
1 files changed, 6 insertions, 2 deletions
diff --git a/FL/Fl_Image.H b/FL/Fl_Image.H
index cd696e8f2..95a465278 100644
--- a/FL/Fl_Image.H
+++ b/FL/Fl_Image.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Image.H,v 1.5.2.3.2.10 2002/01/01 15:11:27 easysw Exp $"
+// "$Id: Fl_Image.H,v 1.5.2.3.2.11 2002/01/07 20:40:02 easysw Exp $"
//
// Image header file for the Fast Light Tool Kit (FLTK).
//
@@ -35,6 +35,10 @@ class FL_EXPORT Fl_Image {
int w_, h_, d_, ld_, count_;
const char * const *data_;
+ // Forbid use of copy contructor and assign operator
+ Fl_Image & operator=(const Fl_Image &);
+ Fl_Image(const Fl_Image &);
+
protected:
void w(int W) {w_ = W;}
@@ -91,5 +95,5 @@ class FL_EXPORT Fl_RGB_Image : public Fl_Image {
#endif
//
-// End of "$Id: Fl_Image.H,v 1.5.2.3.2.10 2002/01/01 15:11:27 easysw Exp $".
+// End of "$Id: Fl_Image.H,v 1.5.2.3.2.11 2002/01/07 20:40:02 easysw Exp $".
//