mirror of
https://github.com/correl/mercenary.git
synced 2024-11-23 19:19:51 +00:00
Correl Roush
0381859219
that will eventually be integrated into it git-svn-id: file:///srv/svn/ircclient/trunk@1 a9804ffe-773b-11dd-bd7c-89c3ef1d2733
18 lines
255 B
C++
18 lines
255 B
C++
#ifndef MIRC_H
|
|
#define MIRC_H
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QMap>
|
|
#include "script.h"
|
|
|
|
class MIRCScriptManager : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//QMap<QString, QString> variables;
|
|
|
|
MIRCScriptManager(QObject *parent);
|
|
};
|
|
|
|
#endif
|