]> git.lyx.org Git - features.git/blobdiff - src/support/lstrings.h
make doc++ able to generate the source documentation for lyx
[features.git] / src / support / lstrings.h
index eea7fdbf4933776450e8b6d130631b9c968fd22a..1c90c07598a7fcab7d55af0299044376cf6be1d9 100644 (file)
@@ -1,8 +1,9 @@
 // -*- C++ -*-
 
-/** This is a collection of string helper functions that works
-    together with string (and later also with STL String. Some of these
-    would certainly benefit from a rewrite/optimization.
+/*
+  This is a collection of string helper functions that works
+  together with string (and later also with STL String. Some of these
+  would certainly benefit from a rewrite/optimization.
 */
 
 #ifndef LSTRINGS_H
@@ -30,22 +31,20 @@ int compare_no_case(string const & s, string const & s2);
 ///
 int compare_no_case(string const & s, string const & s2, unsigned int len);
 
-
+///
 inline
 int compare(char const * a, char const * b)
 {
        return strcmp(a, b);
 }
 
-
-
+///
 inline
 int compare(char const * a, char const * b, unsigned int len)
 {
        return strncmp(a, b, len);
 }
 
-
 ///
 bool isStrInt(string const & str);
 
@@ -70,7 +69,7 @@ string const lowercase(string const &);
 ///
 string const uppercase(string const &);
 
-// convert T to string
+/// convert T to string
 template<typename T>
 inline
 string const tostr(T const & t) 
@@ -94,6 +93,7 @@ string const tostr(T const & t)
 #endif
 }
 
+///
 inline
 string const tostr(bool b)
 {