~zeller-benjamin/mapplauncherd-booster-ui-toolkit/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef QMLBOOSTER_H
#define QMLBOOSTER_H

#include "eventhandler.h"
#include "booster.h"

class QMLBooster : public Booster
{
public:
    virtual const std::string &boosterType() const;
    virtual bool preload();

protected:
    virtual bool receiveDataFromInvoker(int socketFd);
    virtual void preinit();

private:
    static const std::string m_boosterType;
};

#endif