1 #ifndef _KVI_KVS_TREENODE_BASE_H_
2 #define _KVI_KVS_TREENODE_BASE_H_
79 const QChar *
location() {
return m_pLocation; };
86 virtual void dump(
const char * prefix) = 0;
93 virtual void contextDescription(QString &
szBuffer) = 0;
103 void setLocation(
const QChar * pLocation) { m_pLocation = pLocation; };
106 #endif //_KVI_KVS_TREENODE_BASE_H_
Treenode class.
Definition: KviKvsTreeNodeBase.h:40
const QChar * location()
Returns the location char.
Definition: KviKvsTreeNodeBase.h:79
#define KVIRC_API
Definition: kvi_settings.h:128
virtual ~KviKvsTreeNode()
Destroys the treenode object.
Definition: KviKvsTreeNodeBase.h:55
KviKvsTreeNode * parent()
Returns the parent object.
Definition: KviKvsTreeNodeBase.h:73
Definition: KviKvsParser.h:54
void setLocation(const QChar *pLocation)
Sets the location char.
Definition: KviKvsTreeNodeBase.h:103
void setParent(KviKvsTreeNode *p)
Sets the parent object.
Definition: KviKvsTreeNodeBase.h:67
char szBuffer[4096]
Definition: winamp.cpp:77
This file contains compile time settings.
#define p
Definition: detector.cpp:80
Helper functions for the QString class.
const QChar * m_pLocation
Definition: KviKvsTreeNodeBase.h:59