db: core - updated to use new libastrodb for astro DB backend.
[nova.git] / src / objects / ngc.h
blobba02dd8b0844966417dd3277402fbfca36d72c7c
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.
18 */
20 #ifndef _CASTOR_NGC_H
21 #define _CASTOR_NGC_H
23 #include "deep_object.h"
25 #define NGC_TYPES 15
26 extern const gchar *ngc_type[NGC_TYPES][2];
28 struct ngc_object {
29 struct astrodb_object_deep dobject;
30 gfloat axis; /*!< NGC major axis (arcmins) */
33 void ngc_render(struct render_context *rc);
35 #endif