mirror of
git://projects.qi-hardware.com/cae-tools.git
synced 2024-12-23 04:23:55 +02:00
23 lines
601 B
C
23 lines
601 B
C
/*
|
|
* gerber.h - Gerber file input/output
|
|
*
|
|
* Written 2010, 2015 by Werner Almesberger
|
|
* Copyright 2010, 2015 Werner Almesberger
|
|
*
|
|
* 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);
|
|
void gerber_write(const char *name, const struct path *paths);
|
|
|
|
#endif /* !GERBER_H */
|