]> git.lyx.org Git - lyx.git/blobdiff - src/Variables.h
rename assert.h to lassert.h
[lyx.git] / src / Variables.h
index de9b1c514a3eaf7f40de46d11c17f653fdaa187f..7758696bbb2b25ffbe8216fb932af0bc2182f523 100644 (file)
@@ -1,37 +1,43 @@
 // -*- C++ -*-
-/* This file is part of
-* ======================================================
-*
-*           LyX, The Document Processor
-*
-*           Copyright 1995 Matthias Ettrich
-*           Copyright 1995-2001 the LyX Team.
-*
-* ====================================================== */
+/**
+ * \file Variables.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \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 "LString.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