]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Timeout.h
include sys/time.h
[lyx.git] / src / frontends / Timeout.h
index eaac2a37a09877efe038415bd903000287ac4f05..afa331decc2da17430cce5b1f77866030f9a8a1b 100644 (file)
@@ -1,18 +1,18 @@
 // -*- C++ -*-
 /**
  * \file Timeout.h
- * Copyright 2001 LyX Team
- * Read COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Lars Gullik Bjønnes
  * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
+
 #ifndef TIMEOUT_H
 #define TIMEOUT_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include <boost/signals/signal0.hpp>
 
  */
 class Timeout {
 public:
-       ///
+       /// the timeout type
        enum Type {
-               /// one-shot timer
-               ONETIME,
-               /// repeating
-               CONTINUOUS
+               ONETIME, //< one-shot timer
+               CONTINUOUS //< repeating
        };
        ///
        Timeout(unsigned int msec, Type = ONETIME);