Updated copyright text/header in most source files.
[geda-gaf/peter-b.git] / libgeda / include / libgeda / o_types.h
blob4cc5a7ed2608ec1a7439e23638965a77c344028a
1 /* gEDA - GPL Electronic Design Automation
2 * libgeda - gEDA's Library
3 * Copyright (C) 1998-2010 Ales Hvezda
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #ifndef _O_TYPES_H_INCL
21 #define _O_TYPES_H_INCL
23 /* Object types */
24 /* Object types are also available in scheme */
25 /* If there is any addition, add them also in g_register.c
26 (function g_register_libgeda_vars) */
27 #define OBJ_LINE 'L'
28 #define OBJ_PATH 'H'
29 #define OBJ_BOX 'B'
30 #define OBJ_PICTURE 'G'
31 #define OBJ_CIRCLE 'V'
32 #define OBJ_NET 'N'
33 #define OBJ_BUS 'U'
34 #define OBJ_COMPLEX 'C'
35 #define OBJ_TEXT 'T'
36 #define OBJ_PIN 'P'
37 #define OBJ_ARC 'A'
38 #define OBJ_PLACEHOLDER 'X' /* added 1.19.2005 by SDB to prevent
39 * deletion of unfound symbol files */
42 #define STARTATTACH_ATTR '{'
43 #define ENDATTACH_ATTR '}'
44 #define START_EMBEDDED '['
45 #define END_EMBEDDED ']'
47 /* font stuff */
48 #define INFO_FONT 'F'
49 #define VERSION_CHAR 'v'
51 /* misc stuff */
52 #define COMMENT '#'
54 #endif