aboutsummaryrefslogtreecommitdiff
path: root/liblogdiag/ld-lua-symbol-private.h
blob: 01a949f607e63ff66765c70b89dae7c88a421fb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * ld-lua-symbol-private.h
 *
 * This file is a part of logdiag.
 * Copyright 2010, 2011 Přemysl Eric Janouch
 *
 * See the file LICENSE for licensing information.
 *
 */

#ifndef __LD_LUA_SYMBOL_PRIVATE_H__
#define __LD_LUA_SYMBOL_PRIVATE_H__

G_BEGIN_DECLS


/*< private_header >*/

/*
 * LdLuaSymbolPrivate:
 * @lua: parent #LdLua object.
 * @name: name of this symbol.
 * @human_name: localized human name of this symbol.
 * @area: area of this symbol.
 * @terminals: terminals of this symbol.
 */
struct _LdLuaSymbolPrivate
{
	LdLua *lua;
	gchar *name;
	gchar *human_name;
	LdRectangle area;
	LdPointArray *terminals;
};


G_END_DECLS

#endif /* ! __LD_LUA_SYMBOL_PRIVATE_H__ */