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

gpencil_io_import_base.hh « intern « gpencil « io « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86b17ca6ea974003d5d3615081e821a0ffaac0c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* 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 GpencilImporter : public GpencilIO {

 public:
  GpencilImporter(const struct GpencilIOParams *iparams);
  virtual bool read() = 0;

 protected:
  struct Object *create_object();
  int32_t create_material(const char *name, bool stroke, bool fill);

 private:
};

}  // namespace blender::io::gpencil