]> git.lyx.org Git - lyx.git/blobdiff - src/support/StrPool.h
fix typo that put too many include paths for most people
[lyx.git] / src / support / StrPool.h
index d97a1f35e0789ac2cdf0274d5bc9328a31a6e621..622db935412c35163ca02746fbed9827c85c658d 100644 (file)
@@ -1,10 +1,10 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
- *          Copyright 2000 Jean-Marc Lasgouttes
+ *
+ *          Copyright 2000-2001 Jean-Marc Lasgouttes
  *
  * ======================================================*/
 
 ///
 class StrPool {
 public:
-        /// delete all the strings that have been allocated by add()
-        ~StrPool();
-        /// Make a copy of the string, and remember it in the pool
-        char const * add(string const & str);
-        
+       /// delete all the strings that have been allocated by add()
+       ~StrPool();
+       /// 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_;
+       Pool pool_;
 };
 
+//extern StrPool strPool;
+
 #endif