GDS-Render v1.2.1
command-line.h
Go to the documentation of this file.
1/*
2 * GDSII-Converter
3 * Copyright (C) 2018 Mario Hüttel <mario.huettel@gmx.net>
4 *
5 * This file is part of GDSII-Converter.
6 *
7 * GDSII-Converter is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * GDSII-Converter is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GDSII-Converter. If not, see <http://www.gnu.org/licenses/>.
18 */
19
31#ifndef _COMMAND_LINE_H_
32#define _COMMAND_LINE_H_
33
34#include <glib.h>
35
43 char *so_path;
44
49};
50
64int command_line_convert_gds(const char *gds_name,
65 const char *cell_name,
66 char **renderers,
67 char **output_file_names,
68 const char *layer_file,
69 struct external_renderer_params *ext_param,
70 gboolean tex_standalone,
71 gboolean tex_layers,
72 double scale);
73
74#endif /* _COMMAND_LINE_H_ */
75
int command_line_convert_gds(const char *gds_name, const char *cell_name, char **renderers, char **output_file_names, const char *layer_file, struct external_renderer_params *ext_param, gboolean tex_standalone, gboolean tex_layers, double scale)
Convert GDS according to command line parameters.
Definition: command-line.c:138
External renderer paramameters to command line renderer.
Definition: command-line.h:39
char * cli_params
Command line parameters given.
Definition: command-line.h:48
char * so_path
Path to shared object.
Definition: command-line.h:43