Add overrides to quiet cppcheck
This commit is contained in:
parent
2679b3a51a
commit
c668eb7134
|
@ -46,14 +46,14 @@ public:
|
||||||
);
|
);
|
||||||
~FileCamera();
|
~FileCamera();
|
||||||
|
|
||||||
const char *Path() const { return( path ); }
|
const char *Path() const { return path; }
|
||||||
|
|
||||||
void Initialise();
|
void Initialise();
|
||||||
void Terminate();
|
void Terminate();
|
||||||
int PreCapture();
|
int PreCapture() override;
|
||||||
int Capture( ZMPacket &p );
|
int Capture(ZMPacket &p) override;
|
||||||
int PostCapture();
|
int PostCapture() override;
|
||||||
int Close() { return 0; };
|
int Close() { return 0; } override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // ZM_FILE_CAMERA_H
|
#endif // ZM_FILE_CAMERA_H
|
||||||
|
|
Loading…
Reference in New Issue