X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fmouse_state.h;h=fa310d08f002e9bcb295c0a494414ed83566ff83;hb=af42a9d683728a0af34a56f7fd56ec8be4155227;hp=738be988927d7d99e4196e30e1372babd8e6293d;hpb=6fac1dc98003a6a6e02765f078b3d3426d426508;p=lyx.git diff --git a/src/frontends/mouse_state.h b/src/frontends/mouse_state.h index 738be98892..fa310d08f0 100644 --- a/src/frontends/mouse_state.h +++ b/src/frontends/mouse_state.h @@ -1,18 +1,22 @@ +// -*- C++ -*- /** * \file mouse_state.h - * 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 + * \author John Levon * - * Full author contact details are available in file CREDITS + * 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 { @@ -29,7 +33,10 @@ inline void operator|=(state & s1, state s2) { s1 = static_cast(s1 | s2); } - + } // namespace mouse_button + +} // namespace lyx + #endif // MOUSE_STATE_H