Skip to content

Commit

Permalink
AP_Camera: runcam backend
Browse files Browse the repository at this point in the history
  • Loading branch information
andyp1per committed Apr 25, 2024
1 parent 6b9e6e5 commit 6eb3394
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion libraries/AP_Camera/AP_RunCam.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
#define HAL_RUNCAM_ENABLED 1
#endif

#include "AP_Camera_Backend.h"

#if HAL_RUNCAM_ENABLED

#include <AP_Param/AP_Param.h>
Expand All @@ -43,11 +45,14 @@

/// @class AP_RunCam
/// @brief Object managing a RunCam device
class AP_RunCam
class AP_RunCam : public AP_Camera_Backend
{
public:
AP_RunCam();

// Constructor
using AP_Camera_Backend::AP_Camera_Backend;

// do not allow copies
CLASS_NO_COPY(AP_RunCam);

Expand Down

0 comments on commit 6eb3394

Please sign in to comment.