2010-12-13 22:45:33 +02:00
|
|
|
/*
|
2015-03-16 02:07:47 +02:00
|
|
|
* gerber.h - Gerber file input/output
|
2010-12-13 22:45:33 +02:00
|
|
|
*
|
2015-03-16 02:07:47 +02:00
|
|
|
* Written 2010, 2015 by Werner Almesberger
|
|
|
|
* Copyright 2010, 2015 Werner Almesberger
|
2010-12-13 22:45:33 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GERBER_H
|
|
|
|
#define GERBER_H
|
|
|
|
|
|
|
|
#include "path.h"
|
|
|
|
|
|
|
|
|
|
|
|
struct path *gerber_read(const char *name, double r_tool_default);
|
2015-03-16 02:07:47 +02:00
|
|
|
void gerber_write(const char *name, const struct path *paths);
|
2010-12-13 22:45:33 +02:00
|
|
|
|
|
|
|
#endif /* !GERBER_H */
|