- Timestamp:
- Jun 1, 2010 1:35:14 AM (15 years ago)
- Location:
- trunk/include/VBox/com
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/array.h
r28800 r29931 710 710 */ 711 711 bool isNull() const { return m.arr == NULL; } 712 713 /** 714 * Returns @c true if this instance does not represents a null array. 715 */ 716 bool isNotNull() const { return m.arr != NULL; } 712 717 713 718 /** -
trunk/include/VBox/com/ptr.h
r29929 r29931 200 200 { 201 201 return (p == NULL); 202 } 203 204 bool isNotNull() const 205 { 206 return (p != NULL); 202 207 } 203 208
Note:
See TracChangeset
for help on using the changeset viewer.