ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/ccscs20/NullNode.hpp
(Generate patch)

Comparing NullNode.hpp (file contents):
Revision 6 by Douglas Thrift, 2004-05-13T23:17:43-07:00 vs.
Revision 7 by Douglas Thrift, 2004-05-14T00:13:01-07:00

# Line 18 | Line 18 | private:
18   public:
19          NullNode() : next(NULL), previous(NULL), null(true) {}
20          NullNode(const Type& value) : value(value), next(NULL), previous(NULL), null(false) {}
21        ~NullNode() {}
21          void setValue(const Type& value) { this->value = value; }
22          const Type& getValue(void) const { return value; }
23          void addNext(const Type& value);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines