]> git.lyx.org Git - features.git/blobdiff - src/support/StrPool.h
make doc++ able to generate the source documentation for lyx
[features.git] / src / support / StrPool.h
index 826e9858417d49155dfa77a6d175195da8f58978..d97a1f35e0789ac2cdf0274d5bc9328a31a6e621 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_;
 };