20 lines
458 B
C++
20 lines
458 B
C++
/* SPDX-FileCopyrightText: 2019 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#pragma once
|
|
|
|
#include "usd_writer_abstract.hh"
|
|
|
|
namespace blender::io::usd {
|
|
|
|
class USDLightWriter : public USDAbstractWriter {
|
|
public:
|
|
USDLightWriter(const USDExporterContext &ctx);
|
|
|
|
protected:
|
|
bool is_supported(const HierarchyContext *context) const override;
|
|
void do_write(HierarchyContext &context) override;
|
|
};
|
|
|
|
} // namespace blender::io::usd
|