Changed project structure.

This commit is contained in:
2024-01-14 09:38:57 -08:00
parent 7dcd903140
commit 039ab8cc0f
240 changed files with 696 additions and 573 deletions

View File

@@ -1,5 +1,5 @@
#include "json/Json.h"
#include "Log.h"
#include "ehs/json/Json.h"
#include "ehs/Log.h"
namespace ehs
{

View File

@@ -1,8 +1,8 @@
#include "json/JsonArray.h"
#include "json/JsonObj.h"
#include "json/JsonBool.h"
#include "json/JsonNum.h"
#include "json/JsonStr.h"
#include "ehs/json/JsonArray.h"
#include "ehs/json/JsonObj.h"
#include "ehs/json/JsonBool.h"
#include "ehs/json/JsonNum.h"
#include "ehs/json/JsonStr.h"
namespace ehs
{

View File

@@ -1,4 +1,4 @@
#include "json/JsonBase.h"
#include "ehs/json/JsonBase.h"
namespace ehs
{

View File

@@ -1,4 +1,4 @@
#include "json/JsonBool.h"
#include "ehs/json/JsonBool.h"
namespace ehs
{

View File

@@ -1,4 +1,4 @@
#include "json/JsonNum.h"
#include "ehs/json/JsonNum.h"
namespace ehs
{

View File

@@ -1,5 +1,5 @@
#include "json/JsonObj.h"
#include "json/JsonVar.h"
#include "ehs/json/JsonObj.h"
#include "ehs/json/JsonVar.h"
namespace ehs
{

View File

@@ -1,4 +1,4 @@
#include "json/JsonStr.h"
#include "ehs/json/JsonStr.h"
namespace ehs
{

View File

@@ -1,10 +1,10 @@
#include "json/JsonVar.h"
#include "json/JsonBase.h"
#include "json/JsonObj.h"
#include "json/JsonArray.h"
#include "json/JsonBool.h"
#include "json/JsonNum.h"
#include "json/JsonStr.h"
#include "ehs/json/JsonVar.h"
#include "ehs/json/JsonBase.h"
#include "ehs/json/JsonObj.h"
#include "ehs/json/JsonArray.h"
#include "ehs/json/JsonBool.h"
#include "ehs/json/JsonNum.h"
#include "ehs/json/JsonStr.h"
namespace ehs
{