/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* Represents the native path format on the platform. */
#ifndef mozilla_Path_h #define mozilla_Path_h
namespace mozilla { namespace filesystem {
/* *Mozillavaiantofstd::filesystem::path. *Only|value_type|isimplementedatthemoment.
*/ class Path { public: #ifdef XP_WIN using value_type = char16_t; #else using value_type = char; #endif
};
} /* namespace filesystem */
} /* namespace mozilla */
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.