aboutsummaryrefslogtreecommitdiff
path: root/externals/ace/Filecache.h
diff options
context:
space:
mode:
Diffstat (limited to 'externals/ace/Filecache.h')
-rw-r--r--externals/ace/Filecache.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/externals/ace/Filecache.h b/externals/ace/Filecache.h
index 60b8a90f620..9165a70fcd3 100644
--- a/externals/ace/Filecache.h
+++ b/externals/ace/Filecache.h
@@ -4,7 +4,7 @@
/**
* @file Filecache.h
*
- * $Id: Filecache.h 80826 2008-03-04 14:51:23Z wotte $
+ * $Id: Filecache.h 91066 2010-07-12 11:05:04Z johnnyw $
*
* @author James Hu
*/
@@ -41,7 +41,8 @@ class ACE_Filecache_Object;
/**
* @class ACE_Filecache_Handle
*
- * @brief Abstraction over a real file. This is meant to be the entry
+ * @brief
+ * Abstraction over a real file. This is meant to be the entry
* point into the Cached Virtual Filesystem.
*
* This is a cached filesystem implementation based loosely on the
@@ -143,7 +144,7 @@ private:
/// A reference to the low level instance.
ACE_Filecache_Object *file_;
- /// A <dup>'d version of the one from <file_>.
+ /// A dup'd version of the one from file_.
ACE_HANDLE handle_;
int mapit_;
@@ -157,7 +158,8 @@ typedef ACE_Hash_Map_Entry<const ACE_TCHAR *, ACE_Filecache_Object *> ACE_Fileca
/**
* @class ACE_Filecache
*
- * @brief A hash table holding the information about entry point into
+ * @brief
+ * A hash table holding the information about entry point into
* the Cached Virtual Filesystem. On insertion, the reference
* count is incremented. On destruction, reference count is
* decremented.
@@ -231,7 +233,8 @@ private:
/**
* @class ACE_Filecache_Object
*
- * @brief Abstraction over a real file. This is what the Virtual
+ * @brief
+ * Abstraction over a real file. This is what the Virtual
* Filesystem contains. This class is not intended for general
* consumption. Please consult a physician before attempting to
* use this class.