WIZnetInterface using namespace

Dependents:   DualNetworkInterface-Basic

Fork of WIZnetInterface by WIZnet

Revision:
20:3e61863c1f67
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WiznetLibraryOption.h	Tue Jul 14 10:16:16 2015 +0000
@@ -0,0 +1,20 @@
+#pragma once
+
+
+#define WIZNET_LIBRARY_OPTION_NAMESPACE    1
+
+
+
+
+#if (WIZNET_LIBRARY_OPTION_NAMESPACE==1)
+    #define WIZNET_LIBRARY_CPP_S using namespace wiznet_space;
+    #define WIZNET_LIBRARY_CPP_E 
+    #define WIZNET_LIBRARY_HPP_S namespace wiznet_space {
+    #define WIZNET_LIBRARY_HPP_E }
+#else
+    #define WIZNET_LIBRARY_CPP_S 
+    #define WIZNET_LIBRARY_CPP_E  
+    #define WIZNET_LIBRARY_HPP_S 
+    #define WIZNET_LIBRARY_HPP_E 
+#endif
+