summaryrefslogtreecommitdiffstats
path: root/addon/xmlparse/mainhandler.h
blob: 20eedc396510f81d37ec8d008706a5bd7c5c0cb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _MAINHANDLER_H
#define _MAINHANDLER_H

#include <qlist.h>
#include "basehandler.h"
#include "compoundhandler.h"

class MainHandler : public BaseHandler<MainHandler>
{
  public:
    virtual void startCompound(const QXmlAttributes& attrib);
    MainHandler();
    virtual ~MainHandler();
  private:
    QList<CompoundHandler> m_compounds;
};

#endif