#include <GaudiKernel/IFileMgr.h>
Definition at line 41 of file IFileMgr.h.
Io::IoFlags::IoFlags |
( |
int |
i | ) |
|
|
inline |
Definition at line 71 of file IFileMgr.h.
75 const int SHIFT = 8 *
sizeof( int ) - 1;
76 const unsigned MASK = 1 << SHIFT;
78 for (
int i = 1; i <= SHIFT + 1; ++i ) {
79 s += (
f & MASK ?
'1' :
'0' );
81 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 62 of file IFileMgr.h.
68 return ( (
_f & 3 ) == ( fa & 3 ) );
Io::IoFlags::operator int |
( |
| ) |
const |
|
inline |
bool Io::IoFlags::operator== |
( |
const IoFlags & |
fa | ) |
const |
|
inline |
Definition at line 49 of file IFileMgr.h.
49 {
return (
_f == fa.f() ); }
bool Io::IoFlags::operator== |
( |
const int & |
fa | ) |
const |
|
inline |
Definition at line 52 of file IFileMgr.h.
52 {
return (
_f | fa.f() ); }
IoFlags Io::IoFlags::operator| |
( |
const int & |
fa | ) |
const |
|
inline |
The documentation for this class was generated from the following file: