gerb_stats.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00029 #ifndef gerb_stats_H
00030 #define gerb_stats_H
00031
00032
00033
00034
00035 gerbv_error_list_t *gerbv_stats_new_error_list(void);
00036 void gerbv_stats_add_error(gerbv_error_list_t *error_list_in,
00037 int layer, const char *error_text,
00038 gerbv_message_type_t type);
00039
00040 gerbv_aperture_list_t *gerbv_stats_new_aperture_list(void);
00041 void gerbv_stats_add_aperture(gerbv_aperture_list_t *aperture_list_in,
00042 int layer, int number, gerbv_aperture_type_t type,
00043 double parameter[5]);
00044 void gerbv_stats_add_to_D_list(gerbv_aperture_list_t *D_list_in,
00045 int number);
00046 int gerbv_stats_increment_D_list_count(gerbv_aperture_list_t *D_list_in,
00047 int number,
00048 int count,
00049 gerbv_error_list_t *error);
00050
00051 #endif