pragma once

This commit is contained in:
Martin Brodbeck 2024-02-16 21:05:25 +01:00
parent 08885a3aac
commit 99565d260b
3 changed files with 6 additions and 15 deletions

View file

@ -1,5 +1,4 @@
#ifndef KEYER_H
#define KEYER_H
#pragma once
#include "settings.h"
#include "sidetone.h"
@ -43,5 +42,3 @@ class Keyer final
bool m_currentlyPausing{false};
bool m_keyNextIambicB{false};
};
#endif

View file

@ -1,5 +1,4 @@
#ifndef SETTINGS_H
#define SETTINGS_H
#pragma once
#include "pico/flash.h"
@ -19,5 +18,3 @@ struct Settings {
void store_settings(Settings &settings);
Settings read_settings();
#endif

View file

@ -1,5 +1,4 @@
#ifndef SIDETONE_H
#define SIDETONE_H
#pragma once
class Sidetone
{
@ -12,5 +11,3 @@ class Sidetone
Sidetone(){};
uint m_gpio{0};
};
#endif