[Scummvm-git-logs] scummvm branch-2-7 -> 3276e18779abf4ea2d2dfec0ca0b7c1779560408

antoniou79 noreply at scummvm.org
Tue Feb 28 18:34:54 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:
3276e18779 ANDROID: Add missing header for Android filesystem specific


Commit: 3276e18779abf4ea2d2dfec0ca0b7c1779560408
    https://github.com/scummvm/scummvm/commit/3276e18779abf4ea2d2dfec0ca0b7c1779560408
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2023-02-28T20:34:44+02: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