#include <GaudiKernel/IFileMgr.h>
Definition at line 40 of file IFileMgr.h.
Io::IoFlags::IoFlags |
( |
int |
i | ) |
|
|
inline |
Definition at line 70 of file IFileMgr.h.
74 const int SHIFT = 8 *
sizeof( int ) - 1;
75 const unsigned MASK = 1 << SHIFT;
77 for (
int i = 1; i <= SHIFT + 1; ++i ) {
78 s += (
f & MASK ?
'1' :
'0' );
80 if ( i % 8 == 0 ) s +=
' ';
int Io::IoFlags::f |
( |
| ) |
const |
|
inline |
bool Io::IoFlags::isInvalid |
( |
| ) |
const |
|
inline |
bool Io::IoFlags::isRdWr |
( |
| ) |
const |
|
inline |
bool Io::IoFlags::isRead |
( |
| ) |
const |
|
inline |
bool Io::IoFlags::isWrite |
( |
| ) |
const |
|
inline |
bool Io::IoFlags::match |
( |
const IoFlags & |
fa, |
|
|
bool |
strict = true |
|
) |
| const |
|
inline |
Definition at line 61 of file IFileMgr.h.
67 return ( (
_f & 3 ) == ( fa & 3 ) );
Io::IoFlags::operator int |
( |
| ) |
const |
|
inline |
bool Io::IoFlags::operator== |
( |
const IoFlags & |
fa | ) |
const |
|
inline |
Definition at line 48 of file IFileMgr.h.
48 {
return (
_f == fa.f() ); }
bool Io::IoFlags::operator== |
( |
const int & |
fa | ) |
const |
|
inline |
Definition at line 51 of file IFileMgr.h.
51 {
return (
_f | fa.f() ); }
IoFlags Io::IoFlags::operator| |
( |
const int & |
fa | ) |
const |
|
inline |
The documentation for this class was generated from the following file: