mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
- change log location lo application data folder - reveal file in Finder (Explorer) implementation
21 lines
292 B
C++
21 lines
292 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);
|
|
|
|
};
|
|
|
|
#endif
|