|
@@ -0,0 +1,19 @@
|
|
|
+#pragma once
|
|
|
+#ifdef WINDOWS_BUILD
|
|
|
+#ifdef NEXUS_NET_NETWORK_EXPORTS
|
|
|
+#define NEXUS_NET_NETWORK_API _declspec(dllexport)
|
|
|
+#else
|
|
|
+#define NEXUS_NET_NETWORK_API _declspec(dllimport)
|
|
|
+#endif
|
|
|
+#elif LINUX_BUILD
|
|
|
+#define NEXUS_NET_NETWORK_API
|
|
|
+#endif
|
|
|
+
|
|
|
+#include "nexus_net_client.hpp"
|
|
|
+
|
|
|
+namespace robotics::v3 {
|
|
|
+ class NEXUS_NET_NETWORK_API nexus_net_network {
|
|
|
+ public:
|
|
|
+ static nexus_net_client* instance();
|
|
|
+ };
|
|
|
+}
|