aboutsummaryrefslogtreecommitdiff
path: root/logic/JavaUtils.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2013-10-06 02:22:18 +0200
committerPetr Mrázek <peterix@gmail.com>2013-10-06 02:22:18 +0200
commit9cef16a47d8e6085baec08c4b2823631ef8f1b30 (patch)
tree319d22c472b8d502deecd96bc587ce1e07545262 /logic/JavaUtils.h
parentf83119ce7ec3d11a903901b8eff762d2b0a9f635 (diff)
parentb5816f976eca1b2220fff284c5dbceeb5e211bde (diff)
downloadPrismLauncher-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.h26
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();
+};