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

ippOnePropertyAlignmentVolume.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 
00011 //-----------------------------------------------------------------------------
00012 //
00013 // Description :
00014 // Use this for data from GetProp(Tool.Alignment()) or
00015 // GetPropE(Tool.Alignment()). Alignment may not be queried for FoundTool.
00016 //
00017 //-----------------------------------------------------------------------------
00018 #pragma once
00019 #include "ippdme/ippdme.h"
00020 
00021 #include "ippdme/Property/ippOneProperty.h"
00022 
00023 
00024 //=============================================================================
00025 class IPPDME_EXT_CLASS ippOnePropertyAlignmentVolume : public ippOneProperty
00026 {
00027 public:
00028  
00029   ippOnePropertyAlignmentVolume(
00030     ippOtherKeyType keyword, // should be Tool or FoundTool
00031     double inX, double inY, double inZ, 
00032     double inR
00033   );
00034 
00035   virtual ~ippOnePropertyAlignmentVolume(){}
00036 
00037   void setX(double inX){ _x = inX; }
00038   void setY(double inY){ _y = inY; }
00039   void setZ(double inZ){ _z = inZ; }
00040   void setR(double inR){ _r = inR; }
00041 
00042   double getX()const{ return _x; }
00043   double getY()const{ return _y; }
00044   double getZ()const{ return _z; }
00045   double getR()const{ return _r; }
00046 
00047   virtual void propString(ippStringBuilder& ) const;
00048 private:
00049 
00050   double _x;
00051   double _y;
00052   double _z;
00053   double _r;
00054 
00055   ippOnePropertyAlignmentVolume(const ippOnePropertyAlignmentVolume&);
00056   void operator=(const ippOnePropertyAlignmentVolume&);
00057 };
00058 IPP_DECLARE_SMARTPOINTER(ippOnePropertyAlignmentVolume);

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