Add overrides to quiet cppcheck

This commit is contained in:
Isaac Connor 2021-04-20 11:08:15 -04:00
parent 2679b3a51a
commit c668eb7134
1 changed files with 5 additions and 5 deletions

View File

@ -46,14 +46,14 @@ public:
);
~FileCamera();
const char *Path() const { return( path ); }
const char *Path() const { return path; }
void Initialise();
void Terminate();
int PreCapture();
int Capture( ZMPacket &p );
int PostCapture();
int Close() { return 0; };
int PreCapture() override;
int Capture(ZMPacket &p) override;
int PostCapture() override;
int Close() { return 0; } override;
};
#endif // ZM_FILE_CAMERA_H