]> git.lyx.org Git - lyx.git/blobdiff - src/FuncStatus.h
fix reading the author field.
[lyx.git] / src / FuncStatus.h
index e48c3ab53c7210fe2d62c98a854671c0191a79de..c9629112de4b76f7cbc6671779190e5de40077e3 100644 (file)
@@ -1,4 +1,14 @@
 // -*- C++ -*-
+/**
+ * \file FuncStatus.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Jean-Marc Lasgouttes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef FUNC_STATUS_H
 #define FUNC_STATUS_H
 
@@ -27,23 +37,23 @@ public:
        ///
        FuncStatus();
        //
-       FuncStatus & clear ();
+       void clear();
        ///
-       void operator |= (FuncStatus const & f);
+       void operator|=(FuncStatus const & f);
        ///
-       FuncStatus & unknown(bool b);
+       void unknown(bool b);
        ///
        bool unknown() const;
-       
+
        ///
-       FuncStatus & disabled (bool b);
+       void enabled(bool b);
        ///
-       bool disabled () const;
+       bool enabled() const;
 
        ///
-       void setOnOff (bool b);
+       void setOnOff(bool b);
        ///
-       bool onoff (bool b) const;
+       bool onoff(bool b) const;
 };
 
 #endif