/* # Copyright (c) 2009 - OpenSLX Project, Computer Center University of Freiburg # # This program is free software distributed under the GPL version 2. # See http://openslx.org/COPYING # # If you have any feedback please consult http://openslx.org/feedback and # send your suggestions, praise, or complaints to feedback@openslx.org # # General information about OpenSLX can be found at http://openslx.org/ # ----------------------------------------------------------------------------- # src/net/mcast/trial_programs/mcastsend.cpp # - Receive a file via the PVS Mcast protocol # ----------------------------------------------------------------------------- */ #ifndef MCASTRECEIVE_H_ #define MCASTRECEIVE_H_ #include class QFile; class McastReceiver; class McastReceive : public QObject { Q_OBJECT public: McastReceive() : QObject(), _receiver(0) { } public slots: void run(); void finished(int state); private: McastReceiver* _receiver; QFile* _target; }; #endif /* MCASTRECEIVE_H_ */