[m] Lots of Doxygen fixes/additions - thanks to lfxGroove

This commit is contained in:
billy1arm 2013-06-23 21:43:27 +01:00 committed by Antz
parent b134615f92
commit c94dbc84c2
960 changed files with 5905 additions and 6171 deletions

View file

@ -17,7 +17,7 @@
namespace G3D {
/*
/**
A cache that does not prevent its members from being garbage collected.
Useful to avoid loading or computing an expression twice. Useful
for memoization and dynamic programming.
@ -56,7 +56,7 @@ private:
Table<Key, ValueWeakRef> table;
public:
/*
/**
Returns NULL if the object is not in the cache
*/
ValueRef operator[](const Key& k) {
@ -93,7 +93,7 @@ private:
Table<Key, ValueRef> table;
public:
/*
/**
Returns NULL if the object is not in the cache
*/
ValueRef operator[](const Key& k) {