File: actiontypes.h

package info (click to toggle)
quickflux 1.1.3%2Bgit20201110.2a37acf-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,036 kB
  • sloc: cpp: 2,874; makefile: 26
file content (24 lines) | stat: -rw-r--r-- 287 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once
#include <QString>

#include <QPointF>
#include <QRectF>
class ActionTypes {

public:

    static QString value1;

    static int value2;

    static qreal value3;

    static bool value4;

    static bool value4b;

    static QPointF value5;

    static QRectF value6;

};