1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
3 Copyright (C) 2009 Maxim Ermilov <zaspire@rambler.ru>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program 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
13 GNU 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 #ifndef _DIR_SYMBOL_H_
21 #define _DIR_SYMBOL_H_
23 #include <glib-object.h>
25 #include "ijs-symbol.h"
29 #define DIR_TYPE_SYMBOL (dir_symbol_get_type ())
30 #define DIR_SYMBOL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), DIR_TYPE_SYMBOL, DirSymbol))
31 #define DIR_SYMBOL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), DIR_TYPE_SYMBOL, DirSymbolClass))
32 #define DIR_IS_SYMBOL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), DIR_TYPE_SYMBOL))
33 #define DIR_IS_SYMBOL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), DIR_TYPE_SYMBOL))
34 #define DIR_SYMBOL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), DIR_TYPE_SYMBOL, DirSymbolClass))
36 typedef struct _DirSymbolClass DirSymbolClass
;
37 typedef struct _DirSymbol DirSymbol
;
39 struct _DirSymbolClass
41 GObjectClass parent_class
;
46 GObject parent_instance
;
49 GType
dir_symbol_get_type (void) G_GNUC_CONST
;
50 DirSymbol
* dir_symbol_new (const gchar
* dirname
);
51 gchar
* dir_symbol_get_path (DirSymbol
* self
);
55 #endif /* _DIR_SYMBOL_H_ */