]> git.lyx.org Git - features.git/blobdiff - src/support/lyxalgo.h
Fix Qt6 deprecation warning (QString::fromUcs4(uint))
[features.git] / src / support / lyxalgo.h
index deaf9531884eb3596b79f3fc81a8b8be4d7b15d0..8777a03e41d989160f3915304e759810316a9fa4 100644 (file)
@@ -1,9 +1,21 @@
 // -*- C++ -*-
+/**
+ * \file lyxalgo.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ *
+ * A variety of useful templates.
+ */
 
 #ifndef LYX_ALGO_H
 #define LYX_ALGO_H
 
-//namespace lyx {
+namespace lyx {
+
 
 /// Returns true if the sequence first,last is sorted, false if not.
 template <class For>
@@ -17,6 +29,7 @@ bool sorted(For first, For last)
        return true;
 }
 
+
 /// Cmp is the same Cmp as you would pass to std::sort.
 template <class For, class Cmp>
 bool sorted(For first, For last, Cmp cmp)
@@ -29,5 +42,7 @@ bool sorted(For first, For last, Cmp cmp)
        return true;
 }
 
-// }  // end of namespace lyx
-#endif
+
+} // namespace lyx
+
+#endif // LYX_ALGO_H