SourceXtractorPlusPlus  0.8
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PixelCoordinateList.h
Go to the documentation of this file.
1 
17 /*
18  * @file PixelCoordinateList.h
19  * @author nikoapos
20  */
21 
22 #ifndef _SEIMPLEMENTATION_PIXELCOORDINATELIST_H
23 #define _SEIMPLEMENTATION_PIXELCOORDINATELIST_H
24 
27 
28 namespace SourceXtractor {
29 
30 class PixelCoordinateList : public Property {
31 
32 public:
33 
35  : m_coordinate_list(std::move(coordinate_list)) {
36  }
37 
38  virtual ~PixelCoordinateList() = default;
39 
41  return m_coordinate_list;
42  }
43 
44 private:
45 
47 
48 }; /* End of PixelCoordinateList class */
49 
50 } /* namespace SourceXtractor */
51 
52 #endif /* _SEIMPLEMENTATION_PIXELCOORDINATELIST_H */
53 
std::vector< PixelCoordinate > m_coordinate_list
virtual ~PixelCoordinateList()=default
Base class for all Properties. (has no actual content)
Definition: Property.h:33
PixelCoordinateList(std::vector< PixelCoordinate > coordinate_list)
T move(T...args)
STL class.
const std::vector< PixelCoordinate > & getCoordinateList() const