]> git.saurik.com Git - wxWidgets.git/blame - contrib/utils/wxrcedit/treedt.h
project file updates
[wxWidgets.git] / contrib / utils / wxrcedit / treedt.h
CommitLineData
56d2f750
VS
1/////////////////////////////////////////////////////////////////////////////
2// Purpose: XML resources editor
3// Author: Vaclav Slavik
4// Created: 2000/05/05
5// RCS-ID: $Id$
6// Copyright: (c) 2000 Vaclav Slavik
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifdef __GNUG__
11 #pragma interface "treedt.h"
12#endif
13
14#ifndef _TREEDT_H_
15#define _TREEDT_H_
16
17
18#include "wx/treectrl.h"
19
1ad83f6b 20class WXDLLEXPORT wxXmlNode;
56d2f750
VS
21
22class XmlTreeData : public wxTreeItemData
23{
24 public:
25 XmlTreeData(wxXmlNode *n) : Node(n) {}
26 wxXmlNode *Node;
27};
28
29
30#endif