DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
MyApplication.hpp
Go to the documentation of this file.
1#ifndef MYAPPLICATION_H
2#define MYAPPLICATION_H
3
4#include <QApplication>
5#include <QMessageBox>
6
7extern char const * const dbe_lib_core_version;
8
9namespace dbe
10{
11class MyApplication: public QApplication
12{
13 Q_OBJECT
14public:
15 MyApplication ( int & argc, char ** argv )
16 : QApplication ( argc, argv )
17 {
18 }
20 {
21 }
22 virtual bool notify ( QObject * rec, QEvent * ev );
23};
24} // namespace dbe
25
26#endif // MYAPPLICATION_H
char const *const dbe_lib_core_version
Including DBE.
MyApplication(int &argc, char **argv)
virtual bool notify(QObject *rec, QEvent *ev)
Include QT Headers.