mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 16:25:08 +00:00

As it was using the `lines()` method of `Core::DeprecatedFile`, this patch also introduce the usage of `BufferedFile` to take advantage of its API: `can_read_line()` and `read_line()`.
22 lines
482 B
C++
22 lines
482 B
C++
/*
|
|
* Copyright (c) 2021, Jesse Buhagiar <jooster669@gmail.com>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/DeprecatedString.h>
|
|
#include <LibCore/Forward.h>
|
|
|
|
#include "Common.h"
|
|
#include "Mesh.h"
|
|
|
|
class MeshLoader {
|
|
public:
|
|
MeshLoader() = default;
|
|
virtual ~MeshLoader() = default;
|
|
|
|
virtual ErrorOr<NonnullRefPtr<Mesh>> load(String const& filename, NonnullOwnPtr<Core::File> file) = 0;
|
|
};
|