LibCore: Actually tell people to stop using Core::File in new code

Otherwise, we keep getting new code merged that uses it, which requires
fixing later.
This commit is contained in:
Sam Atkins 2022-09-12 21:38:38 +01:00 committed by Tim Flynn
parent f640921371
commit 120e5aeca4

View file

@ -17,6 +17,10 @@
namespace Core {
///
/// Use of Core::File for reading/writing data is deprecated.
/// Please use Core::Stream::File and Core::Stream::BufferedFile instead.
///
class File final : public IODevice {
C_OBJECT(File)
public: