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

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

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