IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Coords3d.h
1 // Coords3d.h:
3 // -----------
4 //
15 
16 #ifndef __IPSDKIPLATTRIBUTES_COORDS3D_H__
17 #define __IPSDKIPLATTRIBUTES_COORDS3D_H__
18 
21 
22 namespace ipsdk {
23 namespace imaproc {
24 namespace attr {
25 
31 
32 IPSDK_DECLARE_NODE_DATA(IPSDKIPLAttributes, Coords3d,
33  ((LEAF)(X)(ipsdk::ipReal64))
34  ((LEAF)(Y)(ipsdk::ipReal64))
35  ((LEAF)(Z)(ipsdk::ipReal64)))
36 
37 // methods
38 public:
40  void setCoords(const ipReal64 x, const ipReal64 y, const ipReal64 z);
41 };
42 
45 
48 typedef boost::shared_ptr<ipsdk::imaproc::attr::Coords3d> Coords3dPtr;
49 
52 typedef boost::shared_ptr<const ipsdk::imaproc::attr::Coords3d> Coords3dConstPtr;
53 
56 
59 createCoords3d(const ipReal64 x, const ipReal64 y, const ipReal64 z);
60 
63 
64 } // end of namespace attr
65 } // end of namespace imaproc
66 } // end of namespace ipsdk
67 
68 #endif // __IPSDKIPLATTRIBUTES_COORDS3D_H__
#define IPSDK_DECLARE_NODE_DATA(libraryName, className, childSeq)
double ipReal64
boost::shared_ptr< ipsdk::imaproc::attr::Coords3d > Coords3dPtr
shared pointer to ipsdk::imaproc::attr::Coords3d
Definition: Coords3d.h:154
Definition of import/export macro for library.
boost::shared_ptr< const ipsdk::imaproc::attr::Coords3d > Coords3dConstPtr
shared pointer to const ipsdk::imaproc::attr::Coords3d
Definition: Coords3d.h:158
IPSDKIPLATTRIBUTES_API Coords3dPtr createCoords3d(const ipReal64 x, const ipReal64 y, const ipReal64 z)
function allowing to create new coordinates shared pointer
#define IPSDKIPLATTRIBUTES_API
Import/Export macro for library IPSDKIPLAttributes.
Definition: IPSDKIPLAttributesExports.h:25