| 792 | bool isProperlyAdded() const { return mFlags.test(Added); } |
| 793 | bool isDeleted() const { return mFlags.test(Deleted); } |
| 794 | bool isRemoved() const { return mFlags.test(Deleted | Removed); } |
| 795 | |
| 796 | virtual bool isLocked() const { return mFlags.test( Locked ); } |
| 797 | virtual void setLocked( bool b ); |
no test coverage detected