DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
MyApplication.hpp
Go to the documentation of this file.
1// DUNE DAQ modification notice:
2// This file has been modified from the original ATLAS dbe source for the DUNE DAQ project.
3// Fork baseline commit: dbe-02-12-17 (2022-05-12).
4// Renamed since fork: yes (from dbe/MyApplication.h to include/dbe/MyApplication.hpp).
5
6#ifndef MYAPPLICATION_H
7#define MYAPPLICATION_H
8
9#include <QApplication>
10#include <QMessageBox>
11
12extern char const * const dbe_lib_core_version;
13
14namespace dbe
15{
16class MyApplication: public QApplication
17{
18 Q_OBJECT
19public:
20 MyApplication ( int & argc, char ** argv )
21 : QApplication ( argc, argv )
22 {
23 }
25 {
26 }
27 virtual bool notify ( QObject * rec, QEvent * ev );
28};
29} // namespace dbe
30
31#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.