diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-10-06 02:22:18 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-10-06 02:22:18 +0200 |
commit | 9cef16a47d8e6085baec08c4b2823631ef8f1b30 (patch) | |
tree | 319d22c472b8d502deecd96bc587ce1e07545262 /logic/JavaUtils.h | |
parent | f83119ce7ec3d11a903901b8eff762d2b0a9f635 (diff) | |
parent | b5816f976eca1b2220fff284c5dbceeb5e211bde (diff) | |
download | PrismLauncher-9cef16a47d8e6085baec08c4b2823631ef8f1b30.tar.gz PrismLauncher-9cef16a47d8e6085baec08c4b2823631ef8f1b30.tar.bz2 PrismLauncher-9cef16a47d8e6085baec08c4b2823631ef8f1b30.zip |
Merge branch 'develop' of https://github.com/Drayshak/MultiMC5 into develop
Diffstat (limited to 'logic/JavaUtils.h')
-rw-r--r-- | logic/JavaUtils.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/logic/JavaUtils.h b/logic/JavaUtils.h new file mode 100644 index 00000000..fef2a1bf --- /dev/null +++ b/logic/JavaUtils.h @@ -0,0 +1,26 @@ +/* Copyright 2013 MultiMC Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#pragma once + +#include <QStringList> + +class JavaUtils +{ +public: + JavaUtils(); + + QStringList FindJavaPath(); +}; |