14 #ifndef ITALA_API_DEFECTIVEPIXEL_H 15 #define ITALA_API_DEFECTIVEPIXEL_H 19 #include "Base/GCString.h" 20 #include "ItalaApi/Export.h" 21 #include "ItalaApi/ItalaDefs.h" 25 struct DefectivePixelData;
27 struct ITALA_API DefectivePixel {
41 DefectType Type()
const;
46 GENICAM_NAMESPACE::gcstring TypeString()
const;
49 DefectivePixelData* op;
53 DefectivePixel(DefectivePixelData* data);
54 DefectivePixel(
const DefectivePixel& other);
55 DefectivePixel(DefectivePixel&& other);
56 DefectivePixel& operator=(
const DefectivePixel& other);
57 DefectivePixel& operator=(DefectivePixel&& other);
59 bool operator==(
const DefectivePixel& other);
60 DefectivePixelData& GetOp();
62 typedef std::vector<DefectivePixel> DefectivePixelList;
Definition: DefectivePixel.h:23