Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gpencil_io_export_base.hh « intern « gpencil « io « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f910390cb25f81df415fe7d5c84d5897d1e0a7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2020 Blender Foundation. All rights reserved. */
#pragma once

/** \file
 * \ingroup bgpencil
 */
#include "gpencil_io_base.hh"

namespace blender::io::gpencil {

class GpencilExporter : public GpencilIO {

 public:
  GpencilExporter(const struct GpencilIOParams *iparams) : GpencilIO(iparams){};
  virtual bool write() = 0;

 protected:
 private:
};

}  // namespace blender::io::gpencil