Couple minor improvements #1

Merged
neuron303 merged 9 commits from master into master 2019-08-30 19:12:07 +02:00
2 changed files with 7 additions and 3 deletions
Showing only changes of commit 06354e55c5 - Show all commits

View File

@@ -5,10 +5,12 @@
#define qvoid void
struct SamplePair {
qint16 x, y;
template<typename T> struct SamplePairT {
T x, y;
};
typedef SamplePairT<qint16> SamplePair;
class Device : public QIODevice
{
Q_OBJECT