]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.C
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / Thesaurus.C
index ebfd3bda35a0b761879c557659357c4aeee8ff4e..562bd748835c6109a6d8c69a6e5f551f6be848fa 100644 (file)
@@ -1,25 +1,30 @@
 /**
  * \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>
+
+using std::string;
+
+#ifdef HAVE_LIBAIKSAURUS
 
 using std::sort;
 
+
 Thesaurus::Thesaurus()
-{
-       aik_ = new Aiksaurus;
-}
+       : aik_(new Aiksaurus)
+{}
 
 
 Thesaurus::~Thesaurus()