#ifndef ROOT_TQtMarker
#define ROOT_TQtMarker
#ifndef ROOT_TPoint
#include "TPoint.h"
#endif
#ifndef __CINT__
# include "qglobal.h"
# if QT_VERSION < 0x40000
# include <qpointarray.h>
# else /* QT_VERSION */
# include <QPolygon>
# endif /* QT_VERSION */
#else
class QPointArray;
class QPolygon;
#endif
class TQtMarker {
private:
int fNumNode;
#ifndef __CINT__
#if (QT_VERSION < 0x40000)
QPointArray fChain;
#else /* QT_VERSION */
QPolygon fChain;
#endif /* QT_VERSION */
#endif
Color_t fCindex;
int fMarkerType;
public:
TQtMarker(int n=0, TPoint *xy=0,int type=0);
void operator=(const TQtMarker&);
TQtMarker(const TQtMarker&);
virtual ~TQtMarker();
int GetNumber() const;
#ifndef __CINT__
#if (QT_VERSION < 0x40000)
QPointArray &GetNodes();
#else /* QT_VERSION */
QPolygon &GetNodes();
#endif /* QT_VERSION */
#endif
int GetType() const;
void SetMarker(int n, TPoint *xy, int type);
ClassDef(TQtMarker,0)
};
inline void TQtMarker::operator=(const TQtMarker&m)
{
fNumNode = m.fNumNode;
fChain = m.fChain;
fCindex = m.fCindex;
fMarkerType=m.fMarkerType;
}
inline TQtMarker::TQtMarker(const TQtMarker&m) : fNumNode(m.fNumNode),
fChain(m.fChain), fCindex(m.fCindex),fMarkerType(m.fMarkerType) {}
#endif
Last change: Fri Nov 28 17:01:25 2008
Last generated: 2008-11-28 17:01
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.