ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/FAS/src/bitvector.h
(Generate patch)

Comparing trunk/FAS/src/bitvector.h (file contents):
Revision 87 by tim, Wed Aug 14 16:55:47 2002 UTC vs.
Revision 88 by tim, Mon Aug 19 20:49:08 2002 UTC

# Line 27 | Line 27 | class TBitVector : public bit_vector
27   class TBitVector : public bit_vector
28   {
29    public:
30 <    TBitVector();
31 <    TBitVector(int size);
32 <    ~TBitVector();
33 <
34 <    void Resize();
30 >    void Resize(int newSize);
31      bool IsEmpty();
32 <
32 >    int Count() { return this->size();}
33      void SetBitOn(int index);
34      void SetBitOff(int index);
35      void SetRangeOn(int begin, int end);
# Line 50 | Line 46 | class TBitVector : public bit_vector
46      TBitVector& operator -=(const TBitVector &src);
47      TBitVector& operator |=(const int i);
48  
53    bool operator[](const int i);
54
49      void FromIntVec(vector<int> &intVec);
50      void ToIntvec(vector<int> &intVec);
51  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines