blob: f4c153e6cd160536b86152b11ca9b3ce76060002 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
* @file pcbnew_config.h
* @brief Configuration parameters for Pcbnew.
*/
#ifndef _PCBNEW_CONFIG_H_
#define _PCBNEW_CONFIG_H_
#include <config_params.h>
#include <colors_selection.h>
/* Useful macro : */
#define LOC_COLOR(layer) &g_ColorsSettings.m_LayersColors[layer]
#define ITEM_COLOR(item_visible) &g_ColorsSettings.m_ItemsColors[item_visible]
#endif // _PCBNEW_CONFIG_H_
|