#ifndef THROWER_H #define THROWER_H #include ///////////////////////////////// // This exists only for the purpose of being something to throw. // It is essentially private to krunch.cxx // Apparently it has to exist in a .h file (not in krunch.cxx) // because of the way the meta-object-compiler works. // class thrower : public QObject{ Q_OBJECT Q_SIGNALS: // outbound signals void _newReading(const double, const double, const double, const double); void _flush(); public: void newReading(const double rp0, const double ip0, const double rp1, const double ip1); void flush(); }; #endif /* THROWER_H */