* Use .empty() and .data() * Use nullptr instead of 0 * No else after return * Simple class member initialization * Add override for virtual methods * Include C++ instead of C headers * Remove some unused includes * Use default constructors * Always use braces * Consistent names in definition and declaration * Change typedef to using Pull Request: https://projects.blender.org/blender/blender/pulls/132361
29 lines
590 B
C++
29 lines
590 B
C++
/* SPDX-FileCopyrightText: 2021-2022 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
#include <functional>
|
|
|
|
#include "session/output_driver.h"
|
|
|
|
#include "util/string.h"
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
class OIIOOutputDriver : public OutputDriver {
|
|
public:
|
|
using LogFunction = std::function<void(const string &)>;
|
|
|
|
OIIOOutputDriver(const string_view filepath, const string_view pass, LogFunction log);
|
|
~OIIOOutputDriver() override;
|
|
|
|
void write_render_tile(const Tile &tile) override;
|
|
|
|
protected:
|
|
string filepath_;
|
|
string pass_;
|
|
LogFunction log_;
|
|
};
|
|
|
|
CCL_NAMESPACE_END
|