Tekkotsu Homepage | Demos | Overview | Downloads | Dev. Resources | Reference | Credits |
ShapeSift.hGo to the documentation of this file.00001 //-*-c++-*- 00002 #ifndef _SHAPESIFT_H_ 00003 #define _SHAPESIFT_H_ 00004 00005 #include "ShapeRoot.h" 00006 #include "SiftData.h" 00007 00008 namespace DualCoding { 00009 00010 //! Smart pointer to a @a SiftData object 00011 template<> 00012 class Shape<SiftData> : public ShapeRoot { 00013 public: 00014 SHAPESTUFF_H(SiftData); // defined in ShapeRoot.h 00015 00016 Shape<SiftData>(ShapeSpace &s, SiftMatch* match) 00017 : ShapeRoot(addShape(new SiftData(s, match))) {}; 00018 00019 }; 00020 00021 } // namespace 00022 00023 #endif |
DualCoding 5.1CVS |
Generated Mon May 9 04:56:27 2016 by Doxygen 1.6.3 |