From 32ea25ecd7b25a6c2d27cb71fea15bb2dc52d30a Mon Sep 17 00:00:00 2001 From: Sergey Abramchuk Date: Tue, 23 Jan 2018 17:19:32 +0300 Subject: [PATCH] Add header guards --- OpenVPN Adapter/Vendors/openvpn/client/ovpncli.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/OpenVPN Adapter/Vendors/openvpn/client/ovpncli.hpp b/OpenVPN Adapter/Vendors/openvpn/client/ovpncli.hpp index 3059d09..5aa4bf1 100644 --- a/OpenVPN Adapter/Vendors/openvpn/client/ovpncli.hpp +++ b/OpenVPN Adapter/Vendors/openvpn/client/ovpncli.hpp @@ -24,6 +24,9 @@ // The crux of the API is defined in OpenVPNClient (below) // and TunBuilderBase. +#ifndef OVPNCLI_HPP +#define OVPNCLI_HPP + #include #include #include @@ -600,3 +603,5 @@ namespace openvpn { } } + +#endif