Carna Version 3.3.3
Loading...
Searching...
No Matches
TestApplication.h
1/*
2 * Copyright (C) 2010 - 2015 Leonid Kostrykin
3 *
4 * Chair of Medical Engineering (mediTEC)
5 * RWTH Aachen University
6 * Pauwelsstr. 20
7 * 52074 Aachen
8 * Germany
9 *
10 */
11
12#pragma once
13
14#include <Carna/Carna.h>
15#include <QApplication>
16
17namespace Carna
18{
19
20namespace testing
21{
22
23
24
25// ----------------------------------------------------------------------------------
26// TestApplication
27// ----------------------------------------------------------------------------------
28
29class TestApplication : public QApplication
30{
31
32public:
33
34 TestApplication( int &argc, char **argv );
35 virtual ~TestApplication();
36
37 virtual bool notify( QObject* receiver, QEvent* ev ) override;
38
39}; // TestApplication
40
41
42
43} // namespace testing
44
45} // namespace Carna