]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.C
hopefully fix tex2lyx linking.
[lyx.git] / src / Thesaurus.C
index ebfd3bda35a0b761879c557659357c4aeee8ff4e..af37e4df6629fc8dcbeba25b9a61317b01adf7c5 100644 (file)
@@ -1,25 +1,33 @@
 /**
  * \file Thesaurus.C
- * Copyright 2001 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
 #include "Thesaurus.h"
 
-#ifdef HAVE_LIBAIKSAURUS
-
 #include <algorithm>
+#include <string>
+
+
+namespace lyx {
+
+using std::string;
+
+#ifdef HAVE_LIBAIKSAURUS
 
 using std::sort;
 
+
 Thesaurus::Thesaurus()
-{
-       aik_ = new Aiksaurus;
-}
+       : aik_(new Aiksaurus)
+{}
 
 
 Thesaurus::~Thesaurus()
@@ -87,3 +95,6 @@ Thesaurus::Meanings Thesaurus::lookup(string const &)
 
 // Global instance
 Thesaurus thesaurus;
+
+
+} // namespace lyx