mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 12:13:42 +02:00
22 lines
353 B
C++
22 lines
353 B
C++
//
|
|
// FileUtils.h
|
|
// hifi
|
|
//
|
|
// Created by Stojce Slavkovski on 12/23/13.
|
|
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#ifndef hifi_FileUtils_h
|
|
#define hifi_FileUtils_h
|
|
|
|
#include <QString>
|
|
|
|
class FileUtils {
|
|
|
|
public:
|
|
static void locateFile(QString fileName);
|
|
static QString standardPath(QString subfolder);
|
|
|
|
};
|
|
|
|
#endif
|