]> git.lyx.org Git - lyx.git/blobdiff - src/Variables.h
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / Variables.h
index b73b63a15605124192945e2f8197b09487c9599b..5823fb3e6cdcb36be12baed316a780b6f2e41985 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  * \author Jean-Marc Lasgouttes
  *
  * Full author contact details are available in file CREDITS.
 #ifndef VARIABLES_H
 #define VARIABLES_H
 
-#include "support/std_string.h"
 #include <map>
 
 
+namespace lyx {
+
+
 ///
 class Variables {
 public:
        ///
-       void set(string const &, string const &);
+       void set(std::string const &, std::string const &);
        ///
-       string const get(string const &) const;
+       std::string const get(std::string const &) const;
        ///
-       bool isSet(string const & var) const;
+       bool isSet(std::string const & var) const;
        ///
-       string const expand(string const &) const;
+       std::string const expand(std::string const &) const;
 private:
        ///
-       typedef std::map<string, string> Vars;
+       typedef std::map<std::string, std::string> Vars;
        ///
        Vars vars_;
 };
 
+
+} // namespace lyx
+
 #endif