Removes some unused files from gridmate (Containers/set and slist) also Doc.h

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-12-01 18:39:26 -08:00
parent 7ea2b34e91
commit a55773f9c3
4 changed files with 0 additions and 76 deletions
@@ -1,23 +0,0 @@
/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#ifndef GM_CONTAINERS_SET_H
#define GM_CONTAINERS_SET_H
#include <GridMate/Memory.h>
#include <AzCore/std/containers/set.h>
namespace GridMate
{
template<class Key, class Compare = AZStd::less<Key>, class Allocator = SysContAlloc>
using set = AZStd::set<Key, Compare, Allocator>;
template<class Key, class Compare = AZStd::less<Key>, class Allocator = SysContAlloc>
using multiset = AZStd::multiset<Key, Compare, Allocator>;
}
#endif // GM_CONTAINERS_SET_H
@@ -1,20 +0,0 @@
/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#ifndef GM_CONTAINERS_SLIST_H
#define GM_CONTAINERS_SLIST_H
#include <GridMate/Memory.h>
#include <AzCore/std/containers/forward_list.h>
namespace GridMate
{
template<class T, class Allocator = SysContAlloc>
using forward_list = AZStd::forward_list<T, Allocator>;
}
#endif // GM_CONTAINERS_SLIST_H
-31
View File
@@ -1,31 +0,0 @@
/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
/**
* \mainpage
* Welcome to the GridMate network library.
*
* Check the latest \ref ReleaseNotes "release notes" for this version of GridMate.
*
* You can start learning by looking at the \ref Library "Library overview".
*
* Or if you can't wait, jump to the \ref GMExamples "code examples" to see how GridMate is used.
*/
/**
* \page Library Library Overview
*
* \subpage Fundamentals "Fundamental Concepts"
*
* \ref GMExamples "Code examples"
*
*/
/**
* \namespace GridMate
* \brief The main namespace for the GridMate library.
*/
@@ -37,8 +37,6 @@ set(FILES
Carrier/Utils.h
Containers/list.h
Containers/queue.h
Containers/set.h
Containers/slist.h
Containers/unordered_map.h
Containers/unordered_set.h
Containers/vector.h