]> git.lyx.org Git - lyx.git/blobdiff - src/support/StrPool.h
one small private fix in mathed, put noncopyable and tie into boost namespace
[lyx.git] / src / support / StrPool.h
index 826e9858417d49155dfa77a6d175195da8f58978..2debb9b26cf4e1263c6478030bf584ec40e62d32 100644 (file)
 #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