Skip to content

Commit

Permalink
Merge pull request #137 from niklasva/cpp-header-guards
Browse files Browse the repository at this point in the history
c++: add header guards
  • Loading branch information
sidcha committed Oct 9, 2023
2 parents 24409e9 + bee96c4 commit a99e295
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions include/osdp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
* SPDX-License-Identifier: Apache-2.0
*/

#ifndef LIBOSDP_OSDP_HPP_
#define LIBOSDP_OSDP_HPP_

#include <osdp.h>

/**
Expand Down Expand Up @@ -149,3 +152,5 @@ class PeripheralDevice : public Common {
};

}; /* namespace OSDP */

#endif // LIBOSDP_OSDP_HPP_

0 comments on commit a99e295

Please sign in to comment.