mirror of
https://github.com/RPCS3/cereal.git
synced 2024-11-27 05:00:38 +00:00
Adding doxygen file tags and STLSupport module
This commit is contained in:
parent
74737ede8c
commit
ef4ec7bd69
@ -40,7 +40,9 @@
|
||||
namespace cereal
|
||||
{
|
||||
//! \defgroup Archives Input and output archive types
|
||||
|
||||
//! \defgroup STLSupport Support for types found in the C++ Standard Library
|
||||
//! \defgroup OtherTypes Support for miscellaneous types
|
||||
|
||||
// ######################################################################
|
||||
//! An exception class thrown when things go wrong at runtime
|
||||
struct Exception : public std::runtime_error
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file array.hpp
|
||||
\brief Support for types found in <array>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file base_class.hpp
|
||||
\brief Support for base classes (virtual and non-virtual)
|
||||
\ingroup OtherTypes */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file bitset.hpp
|
||||
\brief Support for types found in <bitset>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file boost_variant.hpp
|
||||
\brief Support for boost::variant
|
||||
\ingroup OtherTypes */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file chrono.hpp
|
||||
\brief Support for types found in <chrono>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file common.hpp
|
||||
\brief Support common types
|
||||
\ingroup OtherTypes */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file comples.hpp
|
||||
\brief Support for types found in <complex>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file deque.hpp
|
||||
\brief Support for types found in <deque>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file forward_list.hpp
|
||||
\brief Support for types found in <forward_list>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file list.hpp
|
||||
\brief Support for types found in \<list>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file map.hpp
|
||||
\brief Support for types found in <map>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file memory.hpp
|
||||
\brief Support for types found in <memory>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file polymorphic.hpp
|
||||
\brief Support for pointers to polymorphic base classes
|
||||
\ingroup OtherTypes */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file queue.hpp
|
||||
\brief Support for types found in <queue>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file set.hpp
|
||||
\brief Support for types found in <set>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file stack.hpp
|
||||
\brief Support for types found in <stack>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file string.hpp
|
||||
\brief Support for types found in <string>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file tuple.hpp
|
||||
\brief Support for types found in <tuple>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file unordered_map.hpp
|
||||
\brief Support for types found in <unordered_map>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file unordered_set.hpp
|
||||
\brief Support for types found in <unordered_set>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file utility.hpp
|
||||
\brief Support for types found in <utility>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/*! \file vector.hpp
|
||||
\brief Support for types found in <vector>
|
||||
\ingroup STLSupport */
|
||||
/*
|
||||
Copyright (c) 2013, Randolph Voorhies, Shane Grant
|
||||
All rights reserved.
|
||||
|
Loading…
Reference in New Issue
Block a user