]> git.saurik.com Git - wxWidgets.git/blame - interface/treebase.h
remove unused files
[wxWidgets.git] / interface / treebase.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: treebase.h
e54c96f1 3// Purpose: interface of wxTreeItemId
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxTreeItemId
11 @wxheader{treebase.h}
7c913512 12
23324ae1 13 An opaque reference to a tree item.
7c913512 14
23324ae1
FM
15 @library{wxcore}
16 @category{FIXME}
7c913512 17
e54c96f1 18 @see wxTreeCtrl, wxTreeItemData, @ref overview_wxtreectrloverview "wxTreeCtrl
23324ae1
FM
19 overview"
20*/
7c913512 21class wxTreeItemId
23324ae1
FM
22{
23public:
24 /**
25 Default constructor. wxTreemItemIds are not meant to be constructed explicitly
26 by
27 the user; they are returned by the wxTreeCtrl functions instead.
28 */
29 wxTreeItemId();
30
31 /**
32 Returns @true if this instance is referencing a valid tree item.
33 */
328f5751 34 bool IsOk() const;
23324ae1
FM
35
36 //@{
37 /**
38 Operators for comparison between wxTreeItemId objects.
39 */
328f5751
FM
40 void operator !() const;
41 const bool operator ==(const wxTreeItemId& item) const;
42 const bool operator !=(const wxTreeItemId& item) const;
23324ae1
FM
43 //@}
44};
e54c96f1 45