mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 00:50:35 +02:00
25 lines
456 B
C++
25 lines
456 B
C++
//
|
|
// Created by Bradley Austin Davis 2015/11/05
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#pragma once
|
|
#ifndef hifi_RecorderTests_h
|
|
#define hifi_RecorderTests_h
|
|
|
|
#if 0
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
class RecorderTests : public QObject {
|
|
Q_OBJECT
|
|
private slots:
|
|
void recorderTest();
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|