~dcow90/myro-c++/extern-c

« back to all changes in this revision

Viewing changes to headers/ColorPicture.h

  • Committer: John Hoare
  • Date: 2010-12-15 15:32:22 UTC
  • Revision ID: john@johnami.com-20101215153222-0y3hudkuzov686et
Fixed some bugs with my last ColorPicture "fix". 

Basically I forgot to remove the shadowed variables from the ColorPicture 
declaration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
        virtual Picture* clone();
21
21
 
22
22
                virtual unsigned char * getRawImage();
23
 
 
24
 
        private:
25
 
 
26
 
                unsigned char * image_data;
27
 
                int width;
28
 
                int height;
29
 
 
30
 
        
31
23
};
32
24
 
33
25
#endif