Skip to content
Snippets Groups Projects

move linux code into its subdirectory and move code that is shared between os implementations into root

Merged Francesco Pham requested to merge mrfrank/eddie:restructuring into main
42 files
+ 132
88
Compare changes
  • Side-by-side
  • Inline
Files
42
@@ -9,7 +9,7 @@
@@ -9,7 +9,7 @@
#include "CoapClient.h"
#include "CoapClient.h"
#include "CoapServer.h"
#include "CoapServer.h"
#include "Common.h"
#include "EddieResource.h"
#include <string>
#include <string>
@@ -17,14 +17,11 @@ class EddieEndpoint {
@@ -17,14 +17,11 @@ class EddieEndpoint {
private:
private:
CoapServer *server = nullptr;
CoapServer *server = nullptr;
Site *site = nullptr;
std::string resource_directory_ip;
std::string resource_directory_ip;
 
CoapClient* get_client();
CoapClient *get_client() {
CoapServer* get_server();
return server->get_client();
}
public:
public:
Loading