You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
367 B

#ifndef MESSAGE_H
#define MESSAGE_H
#include <QWidget>
#include <QObject>
#include <QLabel>
class ai;
class cost;
class message:public QWidget
{
Q_OBJECT
public:
message();
public slots:
void mySlot(QString str);
void Slot_out(QString str);
signals:
void Signal_cost(int time,QString number);
private:
cost *cos;
};
#endif // MESSAGE_H