mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-19 06:42:43 +00:00
Formatted the entire codebase and added a CI check for formatting
This commit is contained in:
@@ -8,7 +8,7 @@ using namespace nlohmann;
|
||||
namespace sched_action {
|
||||
class ActionClass {
|
||||
public:
|
||||
virtual ~ActionClass() {};
|
||||
virtual ~ActionClass(){};
|
||||
virtual void trigger() = 0;
|
||||
virtual void prepareEditMenu() = 0;
|
||||
virtual bool showEditMenu(bool& valid) = 0;
|
||||
@@ -21,12 +21,12 @@ namespace sched_action {
|
||||
}
|
||||
|
||||
bool selected = false;
|
||||
|
||||
|
||||
private:
|
||||
bool valid = false;
|
||||
};
|
||||
|
||||
typedef std::shared_ptr<ActionClass> Action;
|
||||
typedef std::shared_ptr<ActionClass> Action;
|
||||
}
|
||||
|
||||
#include <actions/start_recorder.h>
|
||||
|
||||
Reference in New Issue
Block a user