Root/eeshow/kicad/pl.h

1/*
2 * kicad/pl.h - KiCad page layout
3 *
4 * Written 2016 by Werner Almesberger
5 * Copyright 2016 by Werner Almesberger
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
13
14#ifndef KICAD_PL_H
15#define KICAD_PL_H
16
17#include "file/file.h"
18#include "kicad/sch.h"
19
20
21struct pl_ctx;
22
23
24void pl_render(struct pl_ctx *pl, const struct sheet *sheets,
25    const struct sheet *sheet);
26
27struct pl_ctx *pl_parse(struct file *file);
28void pl_free(struct pl_ctx *pl);
29
30#endif /* !KICAD_PL_H */
31

Archive Download this file

Branches:
master



interactive