Implemented the view folder buttons on the main window.

This commit is contained in:
Andrew
2013-01-29 00:26:24 -06:00
parent 3a0367a79c
commit 7ac25bf2da
4 changed files with 36 additions and 2 deletions

View File

@@ -16,6 +16,8 @@
#ifndef OSUTILS_H
#define OSUTILS_H
#include <QString>
#if defined _WIN32 | defined _WIN64
#define WINDOWS 1
#elif __APPLE__ & __MACH__
@@ -24,4 +26,7 @@
#define LINUX 1
#endif
// Opens the given file in the default application.
void openInDefaultProgram(QString filename);
#endif // OSUTILS_H