Blender  V3.3
gpencil_io_export_base.hh
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later
2  * Copyright 2020 Blender Foundation. All rights reserved. */
3 #pragma once
4 
8 #include "gpencil_io_base.hh"
9 
10 namespace blender::io::gpencil {
11 
12 class GpencilExporter : public GpencilIO {
13 
14  public:
15  GpencilExporter(const struct GpencilIOParams *iparams) : GpencilIO(iparams){};
16  virtual bool write() = 0;
17 
18  protected:
19  private:
20 };
21 
22 } // namespace blender::io::gpencil
GpencilExporter(const struct GpencilIOParams *iparams)