Main Page | Namespace List | Class Hierarchy | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

ippScanOnCurveHintCommand.h

Go to the documentation of this file.
00001 // 
00002 // DISCLAIMER: 
00003 //  This software was produced by the National Institute of Standards 
00004 //  and Technology (NIST), an agency of the U.S. government, and by statute is 
00005 //  not subject to copyright in the United States.  Recipients of this 
00006 //  software assume all responsibility associated with its operation,
00007 //  modification,maintenance, and subsequent redistribution. 
00008 //
00009 //  See NIST Administration Manual 4.09.07 b and Appendix I. 
00010 #pragma  once 
00011 #include "ippdme/Command/ippCommand.h"
00012 #include "ippdme/ippTargetVector.h"
00013 
00014 
00032 class IPPDME_EXT_CLASS ippScanOnCurveHintCommand : public ippCommand {
00033   
00034 
00035 public:
00036   ippScanOnCurveHintCommand(
00037     unsigned int tgNum, 
00038     double inDeviation,double inMinRadiusOfCurvature
00039   );
00040 
00041   virtual ~ippScanOnCurveHintCommand();
00042 
00043   void setDeviation(double inDeviation)  { _deviation = inDeviation;}
00044   void setMinRadiusOfCurvature(double inMinRadiusOfCurvature){ _MinRadiusOfCurvature = inMinRadiusOfCurvature; }
00045 
00046   double getDeviation()const{ return _deviation; }
00047   double getMinRadiusOfCurvature()const{ return _MinRadiusOfCurvature; }
00048 
00049   virtual std::string getCommandString() const;
00050 private:
00051   double _deviation;
00052   double _MinRadiusOfCurvature;
00053 
00054   ippScanOnCurveHintCommand(const ippScanOnCurveHintCommand&);
00055   void operator=(const ippScanOnCurveHintCommand&);
00056 };
00057 IPP_DECLARE_SMARTPOINTER(ippScanOnCurveHintCommand);

Generated on Wed Nov 8 00:19:57 2006 for IPPDME by  doxygen 1.4.1