]> git.lyx.org Git - lyx.git/blobdiff - src/WordLangTuple.h
Move #includes out of header files.
[lyx.git] / src / WordLangTuple.h
index d58ca4a7eb854b7ad20d2bb81ffc4ef545d39fc1..22ac67aec2deb4fec75069010c6142f4c600cedd 100644 (file)
@@ -1,35 +1,38 @@
+// -*- C++ -*-
 /**
  * \file WordLangTuple.h
- * Copyright 2002 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 <levon@movementarian.org>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef WORD_LANG_TUPLE_H
 #define WORD_LANG_TUPLE_H
-#include <config.h>
-#include "LString.h" 
+
+#include "LString.h"
+
 /**
  * A word and its given language code ("en_US").
  * This is used for spellchecking.
  */
 class WordLangTuple {
 public:
-       WordLangTuple() {};
+       WordLangTuple() {}
+
        WordLangTuple(string const & w, string const & c)
-               : word_(w), code_(c) {}
+               : word_(w), code_(c)
+       {}
+
        /// return the word
-       string const word() const {
+       string const word() const {
                return word_;
        }
 
        /// return its language code
-       string const lang_code() const {
+       string const lang_code() const {
                return code_;
        }
 
@@ -39,5 +42,5 @@ private:
        /// language code of word
        string code_;
 };
+
 #endif // WORD_LANG_TUPLE_H