mirror of
https://github.com/overte-org/overte.git
synced 2025-04-30 14:02:43 +02:00
20 lines
466 B
C++
20 lines
466 B
C++
//
|
|
// Created by Bradley Austin Davis on 2017/11/08
|
|
// Copyright 2013-2017 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
|
|
//
|
|
|
|
#ifndef hifi_PathUtilsTests_h
|
|
#define hifi_PathUtilsTests_h
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
class PathUtilsTests : public QObject {
|
|
Q_OBJECT
|
|
private slots:
|
|
void testPathUtils();
|
|
};
|
|
|
|
#endif // hifi_PathUtilsTests_h
|