mirror of
https://github.com/overte-org/overte.git
synced 2025-08-17 08:07:03 +02:00
24 lines
476 B
C++
24 lines
476 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_FrameTests_h
|
|
#define hifi_FrameTests_h
|
|
|
|
#if 0
|
|
#include <QtTest/QtTest>
|
|
|
|
class FrameTests : public QObject {
|
|
Q_OBJECT
|
|
private slots:
|
|
void registerFrameTypeTest();
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif // hifi_FrameTests_h
|