This commit is contained in:
2022-08-15 11:43:27 +03:00
parent 67561636e5
commit 494faf862b
2 changed files with 11 additions and 0 deletions

View File

@@ -194,6 +194,16 @@
//! \~russian Макрос для окончания статической инициализации
# define STATIC_INITIALIZER_END
//! \~\brief
//! \~english Macro to remove class copy availability
//! \~russian Макрос для запрета копирования класса
# define NO_COPY_CLASS(Class)
//! \~\brief
//! \~english Macro to supress compiler warning about unused variable
//! \~russian Макрос для подавления предупреждения компилятора о неиспользуемой переменной
# define NO_UNUSED(x)
#undef MICRO_PIP
#undef FREERTOS
#endif //DOXYGEN

View File

@@ -27,6 +27,7 @@
#define PISIGNALS_H
#include "piflags.h"
#include <functional>
class PIP_EXPORT PISignals
{