[Scummvm-git-logs] scummvm master -> 4bcd7084db2d129c4354c8ddf2d6674f28b86e9e
lephilousophe
noreply at scummvm.org
Tue Feb 28 18:32:38 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
4bcd7084db ANDROID: Add missing header for Android filesystem specific
Commit: 4bcd7084db2d129c4354c8ddf2d6674f28b86e9e
https://github.com/scummvm/scummvm/commit/4bcd7084db2d129c4354c8ddf2d6674f28b86e9e
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2023-02-28T19:31:59+01:00
Commit Message:
ANDROID: Add missing header for Android filesystem specific
Changed paths:
A backends/fs/android/android-fs.h
diff --git a/backends/fs/android/android-fs.h b/backends/fs/android/android-fs.h
new file mode 100644
index 00000000000..1e88c74ffb6
--- /dev/null
+++ b/backends/fs/android/android-fs.h
@@ -0,0 +1,35 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#ifndef ANDROID_FILESYSTEM_H
+#define ANDROID_FILESYSTEM_H
+
+/**
+ * Common interface for Android filesystem types: SAF and POSIX
+ * Currently, only a remove function to delete files.
+ */
+class AndroidFSNode {
+public:
+ virtual ~AndroidFSNode() {}
+ virtual bool remove() = 0;
+};
+
+#endif
More information about the Scummvm-git-logs
mailing list