Skip to content

Commit

Permalink
修改文件夹名
Browse files Browse the repository at this point in the history
  • Loading branch information
aurshine committed Nov 23, 2024
1 parent b8a1154 commit cdd8ff8
Show file tree
Hide file tree
Showing 37 changed files with 61 additions and 61 deletions.
4 changes: 2 additions & 2 deletions aurshine/ayr/Array.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#define AYR_ARRAY_HPP


#include <ayr/detail/Array.hpp>
#include <ayr/detail/ayr_concepts.hpp>
#include <ayr/base/Array.hpp>
#include <ayr/base/ayr_concepts.hpp>


namespace ayr
Expand Down
4 changes: 2 additions & 2 deletions aurshine/ayr/Atring.hpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#ifndef AYR_STRING_HPP
#define AYR_STRING_HPP

#include <ayr/detail/CodePoint.hpp>
#include <ayr/detail/NoCopy.hpp>
#include <ayr/base/CodePoint.hpp>
#include <ayr/base/NoCopy.hpp>

namespace ayr
{
Expand Down
2 changes: 1 addition & 1 deletion aurshine/ayr/Chain.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef AYR_CHAIN_HPP
#define AYR_CHAIN_HPP

#include <ayr/detail/Node.hpp>
#include <ayr/base/Node.hpp>
#include <ayr/ayr_memory.hpp>


Expand Down
6 changes: 3 additions & 3 deletions aurshine/ayr/Dict.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#include <ranges>

#include <ayr/ayr_memory.hpp>
#include <ayr/detail/bunit.hpp>
#include <ayr/detail/HashBucket.hpp>
#include <ayr/detail/RelationIterator.hpp>
#include <ayr/base/bunit.hpp>
#include <ayr/base/HashBucket.hpp>
#include <ayr/base/RelationIterator.hpp>

namespace ayr
{
Expand Down
4 changes: 2 additions & 2 deletions aurshine/ayr/Dynarray.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include <utility>

#include <ayr/detail/bunit.hpp>
#include <ayr/detail/Buffer.hpp>
#include <ayr/base/bunit.hpp>
#include <ayr/base/Buffer.hpp>
#include <ayr/Array.hpp>

namespace ayr
Expand Down
6 changes: 3 additions & 3 deletions aurshine/ayr/Set.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

#include <algorithm>
#include <ayr/ayr_memory.hpp>
#include <ayr/detail/bunit.hpp>
#include <ayr/detail/HashBucket.hpp>
#include <ayr/detail/RelationIterator.hpp>
#include <ayr/base/bunit.hpp>
#include <ayr/base/HashBucket.hpp>
#include <ayr/base/RelationIterator.hpp>
#include <ayr/Atring.hpp>


Expand Down
4 changes: 2 additions & 2 deletions aurshine/ayr/ayr_memory.hpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#ifndef AYR_AYR_MEMORY_HPP
#define AYR_AYR_MEMORY_HPP

#include <ayr/detail/ayr_memory.hpp>
#include <ayr/detail/ayr_traits.hpp>
#include <ayr/base/ayr_memory.hpp>
#include <ayr/base/ayr_traits.hpp>
#include <ayr/DynArray.hpp>


Expand Down
6 changes: 3 additions & 3 deletions aurshine/ayr/detail/Array.hpp → aurshine/ayr/base/Array.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

#include <algorithm>

#include <ayr/detail/printer.hpp>
#include <ayr/detail/ayr_memory.hpp>
#include <ayr/detail/Sequence.hpp>
#include <ayr/base/printer.hpp>
#include <ayr/base/ayr_memory.hpp>
#include <ayr/base/Sequence.hpp>


namespace ayr
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
#ifndef AYR_DEValue_tAIL_BUFFER_HPP
#define AYR_DEValue_tAIL_BUFFER_HPP

#include <ayr/detail/printer.hpp>
#include <ayr/detail/ayr_memory.hpp>
#include <ayr/detail/Array.hpp>
#include <ayr/detail/RelationIterator.hpp>
#include <ayr/base/printer.hpp>
#include <ayr/base/ayr_memory.hpp>
#include <ayr/base/Array.hpp>
#include <ayr/base/RelationIterator.hpp>

namespace ayr
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#include <string>
#include <format>

#include <ayr/detail/hash.hpp>
#include <ayr/detail/ayr_memory.hpp>
#include <ayr/base/hash.hpp>
#include <ayr/base/ayr_memory.hpp>


namespace ayr
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define AURSHINE_DETAIL_CODEPOINT_HPP

#include <ayr/DynArray.hpp>
#include <ayr/detail/Encoding.hpp>
#include <ayr/base/Encoding.hpp>

namespace ayr
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef AYR_DETAIL_ENCODING
#define AYR_DETAIL_ENCODING

#include <ayr/detail/printer.hpp>
#include <ayr/base/printer.hpp>
#include <ayr/Dict.hpp>

namespace ayr
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#include <chrono>
#include <thread>

#include <ayr/detail/Array.hpp>
#include <ayr/detail/hash.hpp>
#include <ayr/detail/RelationIterator.hpp>
#include <ayr/base/Array.hpp>
#include <ayr/base/hash.hpp>
#include <ayr/base/RelationIterator.hpp>

namespace ayr
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef AYR_DETAIL_INDEXITERATOR_HPP
#define AYR_DETAIL_INDEXITERATOR_HPP

#include <ayr/detail/Object.hpp>
#include <ayr/base/Object.hpp>

namespace ayr
{
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef AYR_DETAIL_NODE_HPP
#define AYR_DETIAL_NODE_HPP

#include <ayr/detail/printer.hpp>
#include <ayr/base/printer.hpp>


namespace ayr
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include <sstream>

#include <ayr/detail/CString.hpp>
#include <ayr/detail/ayr_concepts.hpp>
#include <ayr/base/CString.hpp>
#include <ayr/base/ayr_concepts.hpp>


namespace ayr
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#ifndef AYR_DETIAL_RELATIONITERATOR_HPP
#define AYR_DETIAL_RELATIONITERATOR_HPP

#include <ayr/detail/Object.hpp>
#include <ayr/detail/ayr_concepts.hpp>
#include <ayr/detail/printer.hpp>
#include <ayr/base/Object.hpp>
#include <ayr/base/ayr_concepts.hpp>
#include <ayr/base/printer.hpp>


namespace ayr
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#ifndef AYR_DETAIL_SEQUENCE_HPP
#define AYR_DETAIL_SEQUENCE_HPP

#include <ayr/detail/printer.hpp>
#include <ayr/detail/IndexIterator.hpp>
#include <ayr/base/printer.hpp>
#include <ayr/base/IndexIterator.hpp>


namespace ayr
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#include <concepts>
#include <ranges>

#include <ayr/detail/ayr.h>
#include <ayr/detail/ayr_traits.hpp>
#include <ayr/base/ayr.h>
#include <ayr/base/ayr_traits.hpp>


namespace ayr
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <memory>

#include <ayr/detail/ayr.h>
#include <ayr/base/ayr.h>

namespace ayr
{
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef AYR_DETIAL_BUNIT_HPP
#define AYR_DETIAL_BUNIT_HPP

#include <ayr/detail/ayr.h>
#include <ayr/base/ayr.h>

namespace ayr
{
Expand Down
4 changes: 2 additions & 2 deletions aurshine/ayr/detail/hash.hpp → aurshine/ayr/base/hash.hpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#ifndef AYR_DETAIL_HASH_HPP
#define AYR_DETAIL_HASH_HPP

#include <ayr/detail/ayr_concepts.hpp>
#include <ayr/detail/ayr.h>
#include <ayr/base/ayr_concepts.hpp>
#include <ayr/base/ayr.h>


namespace ayr
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#include <format>
#include <source_location>

#include <ayr/detail/CString.hpp>
#include <ayr/detail/Object.hpp>
#include <ayr/base/CString.hpp>
#include <ayr/base/Object.hpp>

namespace ayr
{
Expand Down
2 changes: 1 addition & 1 deletion aurshine/ayr/coro/CoroLoop.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <chrono>

#include "Task.hpp"
#include <ayr/detail/ayr_traits.hpp>
#include <ayr/base/ayr_traits.hpp>

namespace ayr
{
Expand Down
4 changes: 2 additions & 2 deletions aurshine/ayr/coro/Generator.hpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#ifndef AYR_CORO_GENERATOR_HPP
#define AYR_CORO_GENERATOR_HPP

#include <ayr/detail/printer.hpp>
#include <ayr/detail/NoCopy.hpp>
#include <ayr/base/printer.hpp>
#include <ayr/base/NoCopy.hpp>

namespace ayr
{
Expand Down
4 changes: 2 additions & 2 deletions aurshine/ayr/coro/Promise.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include <coroutine>

#include <ayr/detail/printer.hpp>
#include <ayr/detail/NoCopy.hpp>
#include <ayr/base/printer.hpp>
#include <ayr/base/NoCopy.hpp>
#include "co_utils.hpp"


Expand Down
2 changes: 1 addition & 1 deletion aurshine/ayr/fs/win/File.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <memory>

#include <ayr/DynArray.hpp>
#include <ayr/detail/NoCopy.hpp>
#include <ayr/base/NoCopy.hpp>
#include "Path.hpp"


Expand Down
2 changes: 1 addition & 1 deletion aurshine/ayr/fs/win/Path.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef AYR_FS_WIN_PATH_HPP
#define AYR_FS_WIN_PATH_HPP

#include <ayr/detail/Printer.hpp>
#include <ayr/base/Printer.hpp>

#include "winlib.hpp"

Expand Down
2 changes: 1 addition & 1 deletion aurshine/ayr/json/json_trait.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef AYR_JSON_TRAIT_HPP
#define AYR_JSON_TRAIT_HPP

#include <ayr/detail/ayr_concepts.hpp>
#include <ayr/base/ayr_concepts.hpp>
#include <ayr/Atring.hpp>
#include <ayr/DynArray.hpp>
#include <ayr/Dict.hpp>
Expand Down
2 changes: 1 addition & 1 deletion aurshine/ayr/log.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <ctime>
#include <functional>

#include <ayr/detail/printer.hpp>
#include <ayr/base/printer.hpp>
#include <ayr/timer.hpp>
#include <ayr/Array.hpp>

Expand Down
6 changes: 3 additions & 3 deletions aurshine/ayr/socket/Socket.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#include <stdlib.h>
#include <mutex>

#include <ayr/detail/printer.hpp>
#include <ayr/detail/Buffer.hpp>
#include <ayr/detail/NoCopy.hpp>
#include <ayr/base/printer.hpp>
#include <ayr/base/Buffer.hpp>
#include <ayr/base/NoCopy.hpp>
#include <ayr/fs/filesystem.hpp>

namespace ayr
Expand Down
2 changes: 1 addition & 1 deletion aurshine/ayr/thread/threadpool.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <condition_variable>


#include <ayr/detail/NoCopy.hpp>
#include <ayr/base/NoCopy.hpp>
#include <ayr/Array.hpp>


Expand Down
2 changes: 1 addition & 1 deletion aurshine/ayr/timer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <ctime>
#include <chrono>

#include <ayr/detail/Printer.hpp>
#include <ayr/base/Printer.hpp>
#include <ayr/Array.hpp>


Expand Down
2 changes: 1 addition & 1 deletion aurshine/test/buffer_test.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <ayr/detail/buffer.hpp>
#include <ayr/base/buffer.hpp>

void buffer_test()
{
Expand Down

0 comments on commit cdd8ff8

Please sign in to comment.