OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
aTimer.h
Go to the documentation of this file.
1/*
2 * File: aTimer.h
3 * Package: akGui
4 *
5 * Created on: September 25, 2020
6 * Author: Alexander Kuester
7 * Copyright (c) 2022 Alexander Kuester
8 * This file is part of the uiCore component.
9 * This file is subject to the terms and conditions defined in
10 * file 'LICENSE', which is part of this source code package.
11 */
12
13#pragma once
14
15// Qt header
16#include <qtimer.h> // Base class
17
18// AK header
19#include <akCore/globalDataTypes.h> // API Export
20#include <akCore/aObject.h>
21
22namespace ak {
23 class UICORE_API_EXPORT aTimer : public QTimer, public aObject {
24 public:
25 aTimer();
26 virtual ~aTimer();
27 };
28}
#define UICORE_API_EXPORT
Definition globalDataTypes.h:20
This class is used to store the main information of any object used Information contained is the UID ...
Definition aObject.h:34
Definition aTimer.h:23
Definition uiAPI.h:45