16 lines
259 B
C++
16 lines
259 B
C++
#ifndef SWITCH_H
|
|
#define SWITCH_H
|
|
#include <QObject>
|
|
#include <QPair>
|
|
#include "branch.h"
|
|
class Switch:public Branch
|
|
{
|
|
public:
|
|
Switch(const QPair<QString, QString> &fromTo,QObject *parent=0);
|
|
protected:
|
|
virtual void extract();
|
|
|
|
};
|
|
|
|
#endif // SWITCH_H
|