#include <qgarlib/AbstractMultiImage.H>
Inheritance diagram for qgar::AbstractMultiImage:

Just an empty abstract class to group such classes together in the same subtree of the inheritance hierarchy.
Definition at line 60 of file AbstractMultiImage.H.
Public Member Functions | |
Destructor | |
| virtual | ~AbstractMultiImage () |
| Virtual destructor. | |
Access to image characteristics | |
| int | width () const |
| Get the image width. | |
| int | height () const |
| Get the image height. | |
Operators | |
| AbstractMultiImage & | operator= (const AbstractMultiImage &anImg) |
| Assign given image to current image. | |
Protected Member Functions | |
Constructors | |
Constructors belong to the protected section so that the class cannot be instantiated. | |
| AbstractMultiImage () | |
| Default constructor: Set 0 to width and height. | |
| AbstractMultiImage (const AbstractMultiImage &anImg) | |
| Copy constructor. | |
| AbstractMultiImage (unsigned int aWidth, unsigned int aHeight) | |
| Initialize with given width and height. | |
Protected Attributes | |
Representation of an image | |
| int | _width |
| Width of the image. | |
| int | _height |
| Height of the image. | |
|
|
Virtual destructor.
Definition at line 99 of file AbstractMultiImage.C. |
|
|
Default constructor: Set 0 to width and height. The constructor belongs to the protected section so that the class cannot be instantiated. Definition at line 56 of file AbstractMultiImage.C. |
|
|
Copy constructor.
Definition at line 69 of file AbstractMultiImage.C. |
|
||||||||||||
|
Initialize with given width and height.
Definition at line 81 of file AbstractMultiImage.C. |
|
|
Get the image height.
Definition at line 191 of file AbstractMultiImage.H. References _height. |
|
|
Assign given image to current image.
Definition at line 113 of file AbstractMultiImage.C. References _height, and _width. Referenced by qgar::AbstractGradientImage::operator=(). |
|
|
Get the image width.
Definition at line 182 of file AbstractMultiImage.H. References _width. |
|
|
Height of the image.
Definition at line 159 of file AbstractMultiImage.H. Referenced by qgar::AbstractGradientImage::AbstractGradientImage(), qgar::DericheGradientImage::dfilterX(), qgar::DericheGradientImage::dfilterY(), height(), operator=(), and qgar::AbstractGradientImage::shallowCopy(). |
|
|
Width of the image.
Definition at line 154 of file AbstractMultiImage.H. Referenced by qgar::AbstractGradientImage::AbstractGradientImage(), qgar::DericheGradientImage::dfilterX(), qgar::DericheGradientImage::dfilterY(), operator=(), qgar::AbstractGradientImage::shallowCopy(), and width(). |