Root/cameo/gerber.h

1/*
2 * gerber.h - Gerber file input/output
3 *
4 * Written 2010, 2015 by Werner Almesberger
5 * Copyright 2010, 2015 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#ifndef GERBER_H
14#define GERBER_H
15
16#include "path.h"
17
18
19struct path *gerber_read(const char *name, double r_tool_default);
20void gerber_write(const char *name, const struct path *paths);
21
22#endif /* !GERBER_H */
23

Archive Download this file

Branches:
master



interactive