Cat
Register.h
Go to the documentation of this file.
1 // $Id: $
2 #ifndef INC_REGISTER_H
3 #define INC_REGISTER_H 1
4 
5 // Include files
6 #include "Element.h"
7 #include "IOobject.h"
8 
16 class Register : public IOobject {
17 public:
19  Register( );
20 
21  virtual ~Register( );
22 
23  StatusCode setBit(unsigned int, bool);
24 
25  bool getBit(unsigned int);
26 
27 protected:
28 
29 private:
30 
31 };
32 #endif // INC_REGISTER_H
bool getBit(unsigned int)
Definition: Register.cpp:66
Register()
Standard constructor.
Definition: Register.cpp:18
StatusCode setBit(unsigned int, bool)
Definition: Register.cpp:32
virtual ~Register()
Destructor.
Definition: Register.cpp:25