Fixes and tweaks for C++ API reference docs generation
This commit is contained in:
@@ -10,6 +10,8 @@
|
||||
/// <summary>
|
||||
/// Template for dynamic array with variable capacity.
|
||||
/// </summary>
|
||||
/// <typeparam name="T">The type of elements in the array.</typeparam>
|
||||
/// <typeparam name="AllocationType">The type of memory allocator.</typeparam>
|
||||
template<typename T, typename AllocationType = HeapAllocation>
|
||||
API_CLASS(InBuild) class Array
|
||||
{
|
||||
|
||||
@@ -10,6 +10,9 @@
|
||||
/// <summary>
|
||||
/// Template for unordered dictionary with mapped key with value pairs.
|
||||
/// </summary>
|
||||
/// <typeparam name="KeyType">The type of the keys in the dictionary.</typeparam>
|
||||
/// <typeparam name="ValueType">The type of the values in the dictionary.</typeparam>
|
||||
/// <typeparam name="AllocationType">The type of memory allocator.</typeparam>
|
||||
template<typename KeyType, typename ValueType, typename AllocationType = HeapAllocation>
|
||||
API_CLASS(InBuild) class Dictionary
|
||||
{
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
/// <summary>
|
||||
/// Template for unordered set of values (without duplicates with O(1) lookup access).
|
||||
/// </summary>
|
||||
/// <typeparam name="T">The type of elements in the set.</typeparam>
|
||||
template<typename T>
|
||||
API_CLASS(InBuild) class HashSet
|
||||
{
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
#include "../Types/BaseTypes.h"
|
||||
#include "Engine/Platform/Platform.h"
|
||||
|
||||
/// <summanry>
|
||||
/// <summary>
|
||||
/// Small buffer for samples used to calculate min/max/avg values.
|
||||
/// </summanry>
|
||||
/// </summary>
|
||||
template<typename T, int32 Size>
|
||||
class SamplesBuffer
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user