Revert "Added getInstallDir to Core Interface #4696"

This reverts commit 5d770d4204.
This commit is contained in:
Jerry (Xinyu Hou) 2015-07-08 14:59:58 -07:00
parent cad8d399b9
commit 61382c6eb1
2 changed files with 0 additions and 7 deletions

View File

@ -39,12 +39,6 @@ QString CoreInterface::getProfileDir()
return run(args);
}
QString CoreInterface::getInstalledDir()
{
QStringList args("--get-installed-dir");
return run(args);
}
QString CoreInterface::getArch()
{
QStringList args("--get-arch");

View File

@ -26,7 +26,6 @@ public:
QString getPluginDir();
QString getProfileDir();
QString getInstalledDir();
QString getArch();
QString run(const QStringList& args, const QString& input = "");
};