]> git.lyx.org Git - lyx.git/blobdiff - src/Variables.h
fix typo that put too many include paths for most people
[lyx.git] / src / Variables.h
index 754e0b6e7fd1b01654ad213a94cba9f8116cc459..e624a9b695e0920c98960e3eaba93e560144dfdb 100644 (file)
@@ -1,11 +1,11 @@
 // -*- C++ -*-
 /* This file is part of
-* ====================================================== 
-* 
+* ======================================================
+*
 *           LyX, The Document Processor
-*        
+*
 *           Copyright 1995 Matthias Ettrich
-*           Copyright 1995-2000 the LyX Team.
+*           Copyright 1995-2001 the LyX Team.
 *
 * ====================================================== */
 
 ///
 class Variables {
 public:
-  /// 
-  void set(string const &, string const &);
-  /// 
-  string const get(string const &) const;
-  ///
-  bool set(string const & var) const;
-  /// 
-  string const expand(string const &) const;
+       ///
+       void set(string const &, string const &);
+       ///
+       string const get(string const &) const;
+       ///
+       bool isSet(string const & var) const;
+       ///
+       string const expand(string const &) const;
 private:
-  ///
-  typedef std::map<string, string> Vars;
-  ///
-  Vars vars_;
+       ///
+       typedef std::map<string, string> Vars;
+       ///
+       Vars vars_;
 };
 
 #endif