2016-07-22 06:04:42 +03:00
|
|
|
/*
|
|
|
|
* fig.h - Generate FIG output for Eeschema items
|
|
|
|
*
|
|
|
|
* Written 2016 by Werner Almesberger
|
|
|
|
* Copyright 2016 by 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2016-07-22 05:54:32 +03:00
|
|
|
#ifndef FIG_H
|
|
|
|
#define FIG_H
|
|
|
|
|
2016-07-31 03:50:02 +03:00
|
|
|
#include "gfx.h"
|
2016-07-23 06:48:59 +03:00
|
|
|
|
|
|
|
|
2016-07-31 03:50:02 +03:00
|
|
|
extern const struct gfx_ops fig_ops;
|
2016-07-22 05:54:32 +03:00
|
|
|
|
|
|
|
#endif /* !FIG_H */
|