mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 03:03:06 +00:00
set missing property: svn:eol-style native
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15927 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
cbab23bce0
commit
010145b8ed
@ -1,28 +1,28 @@
|
||||
#ifndef UPDATE_FLAGS_H
|
||||
#define UPDATE_FLAGS_H
|
||||
|
||||
namespace lyx {
|
||||
|
||||
namespace Update {
|
||||
enum flags {
|
||||
None = 0,
|
||||
FitCursor = 1,
|
||||
Force = 2,
|
||||
SinglePar = 4,
|
||||
MultiParSel = 8
|
||||
};
|
||||
|
||||
inline flags operator|(flags const f, flags const g)
|
||||
{
|
||||
return static_cast<flags>(int(f) | int(g));
|
||||
}
|
||||
|
||||
inline flags operator&(flags const f, flags const g)
|
||||
{
|
||||
return static_cast<flags>(int(f) & int(g));
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
} // namespace lyx
|
||||
#endif
|
||||
#ifndef UPDATE_FLAGS_H
|
||||
#define UPDATE_FLAGS_H
|
||||
|
||||
namespace lyx {
|
||||
|
||||
namespace Update {
|
||||
enum flags {
|
||||
None = 0,
|
||||
FitCursor = 1,
|
||||
Force = 2,
|
||||
SinglePar = 4,
|
||||
MultiParSel = 8
|
||||
};
|
||||
|
||||
inline flags operator|(flags const f, flags const g)
|
||||
{
|
||||
return static_cast<flags>(int(f) | int(g));
|
||||
}
|
||||
|
||||
inline flags operator&(flags const f, flags const g)
|
||||
{
|
||||
return static_cast<flags>(int(f) & int(g));
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
} // namespace lyx
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user