summaryrefslogtreecommitdiff
path: root/src/helpers.hpp
diff options
context:
space:
mode:
authorKUDr <kudr@openttd.org>2007-02-23 21:29:50 +0000
committerKUDr <kudr@openttd.org>2007-02-23 21:29:50 +0000
commitf3d5fda36cb769651e47cd7a0ad07e6eca2fbb32 (patch)
tree81199111126750a854da1ff9ea5b29301dfc71f7 /src/helpers.hpp
parent0cf592b17a43a9588f0385c2e31ccc542afb0560 (diff)
downloadopenttd-f3d5fda36cb769651e47cd7a0ad07e6eca2fbb32.tar.xz
(svn r8866) -Doc: added more comments to template struct MakeEnumPropsT
Diffstat (limited to 'src/helpers.hpp')
-rw-r--r--src/helpers.hpp15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/helpers.hpp b/src/helpers.hpp
index fb5aeb5f8..3682033e9 100644
--- a/src/helpers.hpp
+++ b/src/helpers.hpp
@@ -80,12 +80,23 @@ template <typename T> static inline T delta(T a, T b) { return a < b ? b - a : a
/** Informative template class exposing basic enumeration properties used by several
* other templates below. Here we have only forward declaration. For each enum type
- * we will create specialization derived from MakeEnumPropsT<>. */
+ * we will create specialization derived from MakeEnumPropsT<>.
+ * i.e.:
+ * template <> struct EnumPropsT<Track> : MakeEnumPropsT<Track, byte, TRACK_BEGIN, TRACK_END, INVALID_TRACK> {};
+ * followed by:
+ * typedef TinyEnumT<Track> TrackByte;
+ */
template <typename Tenum_t> struct EnumPropsT;
/** Helper template class that makes basic properties of given enumeration type visible
* from outsize. It is used as base class of several EnumPropsT specializations each
- * dedicated to one of commonly used enumeration types. */
+ * dedicated to one of commonly used enumeration types.
+ * @param Tenum_t enumeration type that you want to describe
+ * @param Tstorage_t what storage type would be sufficient (i.e. byte)
+ * @param Tbegin first valid value from the contiguous range (i.e. TRACK_BEGIN)
+ * @param Tend one past the last valid value from the contiguous range (i.e. TRACK_END)
+ * @param Tinvalid value used as invalid value marker (i.e. INVALID_TRACK)
+ */
template <typename Tenum_t, typename Tstorage_t, Tenum_t Tbegin, Tenum_t Tend, Tenum_t Tinvalid>
struct MakeEnumPropsT {
typedef Tenum_t type; ///< enum type (i.e. Trackdir)