X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fmouse_state.h;h=fa310d08f002e9bcb295c0a494414ed83566ff83;hb=8d6d21c6d9038700418cd8c776a0d29e31847bf6;hp=84072e1855d8476f03e9cdca554d592d2bebfbca;hpb=97ef9131ba95f605a48d09595bd2ace0f993a55b;p=lyx.git diff --git a/src/frontends/mouse_state.h b/src/frontends/mouse_state.h index 84072e1855..fa310d08f0 100644 --- a/src/frontends/mouse_state.h +++ b/src/frontends/mouse_state.h @@ -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 + * \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(s1 | s2); } - + } // namespace mouse_button + +} // namespace lyx + #endif // MOUSE_STATE_H