summaryrefslogtreecommitdiff
path: root/src/syncServer.h
diff options
context:
space:
mode:
authorMarkus Grüneis <gimpf@gimpf.org>2009-11-11 20:35:10 +0000
committerMarkus Grüneis <gimpf@gimpf.org>2009-11-11 20:35:10 +0000
commit7ca06c7c5a0ae4bb38a67948a03ad8585f925707 (patch)
tree3b6c04f5c3deb795f48d8419c7420e1820eacb59 /src/syncServer.h
parentadded hidden ebuid-compat option to configure script (diff)
fixed header file include guards to be C++ compliant; now always use format ANYTUN_<filename>_INCLUDED
Diffstat (limited to 'src/syncServer.h')
-rw-r--r--src/syncServer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/syncServer.h b/src/syncServer.h
index a5b362b..b73247f 100644
--- a/src/syncServer.h
+++ b/src/syncServer.h
@@ -30,10 +30,9 @@
* along with anytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef _SYNC_SERVER_H_
-#define _SYNC_SERVER_H_
-//#include <iostream>
-//#include <string>
+#ifndef ANYTUN_syncServer_h_INCLUDED
+#define ANYTUN_syncServer_h_INCLUDED
+
#include <boost/bind.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>
@@ -69,4 +68,5 @@ private:
ConnectCallback onConnect_;
Semaphore ready_sem_;
};
+
#endif