X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2FStrPool.h;h=d97a1f35e0789ac2cdf0274d5bc9328a31a6e621;hb=797d87b4513088a66b17c7ac653b84e36ea80458;hp=826e9858417d49155dfa77a6d175195da8f58978;hpb=612a097878de07556b76f7445a5564320987ff97;p=features.git diff --git a/src/support/StrPool.h b/src/support/StrPool.h index 826e985841..d97a1f35e0 100644 --- a/src/support/StrPool.h +++ b/src/support/StrPool.h @@ -19,15 +19,18 @@ #include "LString.h" #include +/// 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 Pool; + /// Pool pool_; };