]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/fileutl.h
convert EDSP to be based on FileFd instead of FILE*
[apt.git] / apt-pkg / contrib / fileutl.h
index f33f7804b0d65f1574f462c7bbbb4bffd5fe3233..13e9c610fd6ab7eb8a3662846662ed84d19c6170 100644 (file)
@@ -23,6 +23,9 @@
 
 #include <apt-pkg/macros.h>
 #include <apt-pkg/aptconfiguration.h>
+#ifdef APT_PKG_EXPOSE_STRING_VIEW
+#include <apt-pkg/string_view.h>
+#endif
 
 #include <string>
 #include <vector>
@@ -89,6 +92,9 @@ class FileFd
    char* ReadLine(char *To, unsigned long long const Size);
    bool Flush();
    bool Write(const void *From,unsigned long long Size);
+#ifdef APT_PKG_EXPOSE_STRING_VIEW
+   APT_HIDDEN bool Write(APT::StringView From) { return Write(From.data(), From.size()); }
+#endif
    bool static Write(int Fd, const void *From, unsigned long long Size);
    bool Seek(unsigned long long To);
    bool Skip(unsigned long long To);