#line 1 "/user/cvsspst/ees1cg/RAVL/RAVL-0.7/Image/Base/ByteIAValue.hh" // This file is part of RAVL, Recognition And Vision Library // Copyright (C) 2001, University of Surrey // This code may be redistributed under the terms of the GNU Lesser // General Public License (LGPL). See the lgpl.licence file for details or // see http://www.gnu.org/copyleft/lesser.html // file-header-ends-here #ifndef RAVLBYTEIAVALUE_HEADER #define RAVLBYTEIAVALUE_HEADER 1 ///////////////////////////////////////////////////// //! rcsid="$Id: ByteIAValue.hh,v 1.2 2001/05/24 22:50:53 craftit Exp $" //! file="Ravl/Image/Base/ByteIAValue.hh" //! lib=RavlImage //! userlevel=Normal //! author="Charles Galambos" //! date="24/01/2001" //! docentry="Ravl.Images.Pixel Types" #include "Ravl/Image/IAValue.hh" namespace RavlImageN { //: Byte Intensity and Alpha value class. class ByteIAValueC : public IAValueC { public: ByteIAValueC() {} //: Default constructor. // creates an undefined IA pixel. ByteIAValueC(const IAValueC &oth) : IAValueC(oth) {} //: Default constructor. // creates an undefined IA pixel. }; } #endif