]> git.lyx.org Git - lyx.git/blobdiff - src/support/StrPool.h
small changes read changelog
[lyx.git] / src / support / StrPool.h
index 826e9858417d49155dfa77a6d175195da8f58978..62c1814cabbaa10e8d4f3a9346f9c26ec7b42fb8 100644 (file)
@@ -4,7 +4,7 @@
  * 
  *           LyX, The Document Processor
  *      
- *          Copyright 2000 Jean-Marc Lasgouttes
+ *          Copyright 2000-2001 Jean-Marc Lasgouttes
  *
  * ======================================================*/
 
 #include "LString.h"
 #include <vector>
 
+///
 class StrPool {
 public:
-        // delete all the strings that have been allocated by add()
+        /// delete all the strings that have been allocated by add()
         ~StrPool();
-        // Make a copy of the string, and remember it in the pool
+        /// Make a copy of the string, and remember it in the pool
         char const * add(string const & str);
         
 private:
+       ///
        typedef std::vector<char const *> Pool;
+       ///
         Pool pool_;
 };
 
+//extern StrPool strPool;
+
 #endif