AuROXTL/Include/auROXTL/auLinkedList.hpp

16 lines
366 B
C++

/***
Copyright (C) 2023 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: auLinkedList.hpp
File: auArrayList.hpp
Date: 2023-1-18
Author: Reece
***/
#pragma once
#if !defined(AURORA_RUNTIME_AU_ARRAY_LIST)
#define AURORA_RUNTIME_AU_ARRAY_LIST std::list
#endif
template <class T>
using AuLinkedList = AURORA_RUNTIME_AU_ARRAY_LIST<T>;