#line 1 "/user/cvsspst/ees1cg/RAVL/RAVL-0.7/Logic/DecisionTree/SampleState.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 RAVL_SAMPLESTATE_HEADER #define RAVL_SAMPLESTATE_HEADER 1 //! rcsid="$Id: SampleState.hh,v 1.5 2002/05/07 21:04:40 craftit Exp $" //! lib=RavlLogic //! file="Ravl/Logic/DecisionTree/SampleState.hh" //! author="Charles Galambos" //! docentry="Ravl.Logic.Decision Tree" #include "Ravl/PatternRec/SampleDiscrete.hh" #include "Ravl/Logic/State.hh" namespace RavlLogicN { //! userlevel=Normal //: Set of example states. class SampleStateC : public SampleDiscreteC { public: SampleStateC() {} //: Default constructor. SampleStateC(UIntT estSize) : SampleDiscreteC(estSize) {} //: Constructor. }; } #endif