db: core - updated to use new libastrodb for astro DB backend.
[nova.git] / src / objects / star.h
blobefd33ee096fb19429b6a044529482bbc5178106d
1 /*
2 * Copyright (C) 2008 Liam Girdwood
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330,
17 * Boston, MA 02111-1307, USA.
21 #ifndef __STAR_H
22 #define __STAR_H
24 #include "deep_object.h"
26 struct star_object {
27 struct astrodb_object_deep dobject;
28 gchar sp[3];
29 gchar HD[6];
30 gint SAO;
33 gint star_object_init(struct astrodb_table *table);
34 void star_object_render(struct render_object *r);
35 void star_object_free(struct astrodb_table *table);
37 #endif