mirror of
https://github.com/preble/libpinproc
synced 2026-02-24 18:25:23 +01:00
Added include guards
This commit is contained in:
@@ -27,6 +27,11 @@
|
||||
* PRDevice.h
|
||||
* libpinproc
|
||||
*/
|
||||
#ifndef PINPROC_PRDEVICE_H
|
||||
#define PINPROC_PRDEVICE_H
|
||||
#if !defined(__GNUC__) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || (__GNUC__ >= 4) // GCC supports "pragma once" correctly since 3.4
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
#include "pinproc.h"
|
||||
#include "PRCommon.h"
|
||||
@@ -167,3 +172,5 @@ protected:
|
||||
queue<uint32_t> freeSwitchRuleIndexes; /**< Indexes of available switch rules. */
|
||||
PRSwitchRuleInternal *GetSwitchRuleByIndex(uint16_t index);
|
||||
};
|
||||
|
||||
#endif /* PINPROC_PRDEVICE_H */
|
||||
|
||||
Reference in New Issue
Block a user