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

ippScanOnLineHintCommand.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 
00015 
00016 class IPPDME_EXT_CLASS ippScanOnLineHintCommand : public ippCommand {
00017   
00018 
00019 public:
00020 
00021 
00022   ippScanOnLineHintCommand(
00023     unsigned int tgNum, double inAngle, double inForm
00024   );
00025 
00026   virtual ~ippScanOnLineHintCommand();
00027 
00028   void setAngle(double inAngle){ _angle = inAngle; }
00029   void setForm(double inForm){ _form = inForm; }
00030 
00031   double getAngle()const{ return _angle; }
00032   double getForm()const{ return _form; }
00033 
00034   virtual std::string getCommandString() const;
00035 private:
00036   double _angle;
00037   double _form;
00038 
00039   ippScanOnLineHintCommand(const ippScanOnLineHintCommand&);
00040   void operator=(const ippScanOnLineHintCommand&);
00041 };
00042 IPP_DECLARE_SMARTPOINTER(ippScanOnLineHintCommand);

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