List.h改名为ArrayList.h

This commit is contained in:
hyzboy 2025-04-23 00:29:44 +08:00
parent a7b0cb6112
commit 33f0ed3258
11 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#include<hgl/type/List.h> #include<hgl/type/ArrayList.h>
namespace hgl namespace hgl
{ {

View File

@ -3,7 +3,7 @@
#include<hgl/thread/ThreadMutex.h> #include<hgl/thread/ThreadMutex.h>
#include<hgl/thread/Semaphore.h> #include<hgl/thread/Semaphore.h>
#include<hgl/type/List.h> #include<hgl/type/ArrayList.h>
#include<hgl/type/Set.h> #include<hgl/type/Set.h>
namespace hgl namespace hgl
{ {

View File

@ -5,7 +5,7 @@
#include<hgl/thread/ThreadMutex.h> #include<hgl/thread/ThreadMutex.h>
#include<hgl/thread/SwapData.h> #include<hgl/thread/SwapData.h>
#include<hgl/thread/DataPost.h> #include<hgl/thread/DataPost.h>
#include<hgl/type/List.h> #include<hgl/type/ArrayList.h>
namespace hgl namespace hgl
{ {
/** /**

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#include<hgl/type/List.h> #include<hgl/type/ArrayList.h>
#include<hgl/type/DataArray.h> #include<hgl/type/DataArray.h>
namespace hgl namespace hgl

View File

@ -1,7 +1,7 @@
#pragma once #pragma once
#include<hgl/type/DataType.h> #include<hgl/type/DataType.h>
#include<hgl/type/List.h> #include<hgl/type/ArrayList.h>
#include<hgl/util/sort/Sort.h> #include<hgl/util/sort/Sort.h>
namespace hgl namespace hgl

View File

@ -1,7 +1,7 @@
#ifndef HGL_TYPE_LRU_CACHE_INCLUDE #ifndef HGL_TYPE_LRU_CACHE_INCLUDE
#define HGL_TYPE_LRU_CACHE_INCLUDE #define HGL_TYPE_LRU_CACHE_INCLUDE
#include<hgl/type/List.h> #include<hgl/type/ArrayList.h>
namespace hgl namespace hgl
{ {
template<typename F,typename T> struct LRUCacheItem template<typename F,typename T> struct LRUCacheItem

View File

@ -1,7 +1,7 @@
#pragma once #pragma once
#include<hgl/type/KeyValue.h> #include<hgl/type/KeyValue.h>
#include<hgl/type/List.h> #include<hgl/type/ArrayList.h>
#include<hgl/type/Pair.h> #include<hgl/type/Pair.h>
#include<hgl/type/Pool.h> #include<hgl/type/Pool.h>
#include<hgl/thread/RWLock.h> #include<hgl/thread/RWLock.h>

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#include<hgl/type/List.h> #include<hgl/type/ArrayList.h>
#include<hgl/type/LifecycleManager.h> #include<hgl/type/LifecycleManager.h>
namespace hgl namespace hgl

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#include<hgl/type/List.h> #include<hgl/type/ArrayList.h>
#include<hgl/type/Queue.h> #include<hgl/type/Queue.h>
#include<hgl/type/LifecycleManager.h> #include<hgl/type/LifecycleManager.h>
namespace hgl namespace hgl

View File

@ -1,7 +1,7 @@
#include<hgl/plugin/PlugIn.h> #include<hgl/plugin/PlugIn.h>
#include<hgl/log/Logger.h> #include<hgl/log/Logger.h>
#include<hgl/type/DateTime.h> #include<hgl/type/DateTime.h>
#include<hgl/type/List.h> #include<hgl/type/ArrayList.h>
#include<hgl/thread/RWLock.h> #include<hgl/thread/RWLock.h>
#include<hgl/filesystem/FileSystem.h> #include<hgl/filesystem/FileSystem.h>