#include <BoolVector.h>
Public Member Functions | |
| BoolVector (int sz) | |
| BoolVector (int sz, const bool &val) | |
| BoolVector (int sz, const BoolVector &val) | |
| BoolVector (const BoolVector &val) | |
| BoolVector (void) | |
| ~BoolVector (void) | |
| int | Size (void) |
| bool & | operator() (int index) |
| const bool & | operator() (int index) const |
| BoolVector & | operator= (const BoolVector &val) |
Private Attributes | |
| int | size |
| Length of vector. | |
| bool * | p |
| Pointer to a bool. | |
|
|
|
|
||||||||||||
|
|
|
||||||||||||
|
|
|
|
Copy Constructor |
|
|
Default Constructor
|
|
|
Destructor |
|
|
|
|
|
|
|
|
Assignment operator |
|
|
|
|
|
Pointer to a bool.
|
|
|
Length of vector.
|