]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/mouse_state.h
Add new variables lyx_build_date/time
[lyx.git] / src / frontends / mouse_state.h
index 84072e1855d8476f03e9cdca554d592d2bebfbca..fa310d08f002e9bcb295c0a494414ed83566ff83 100644 (file)
@@ -1,17 +1,22 @@
+// -*- C++ -*-
 /**
  * \file mouse_state.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.
  *
  * GUII representation of mouse presses and
  * mouse button states
  *
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef MOUSE_STATE_H
 #define MOUSE_STATE_H
 
+namespace lyx {
+
 /// used both for presses and held during motion
 namespace mouse_button {
 
@@ -28,7 +33,10 @@ inline void operator|=(state & s1, state s2)
 {
        s1 = static_cast<state>(s1 | s2);
 }
+
 } // namespace mouse_button
 
+
+} // namespace lyx
+
 #endif // MOUSE_STATE_H