From 3a2152e5ea7980575d5a66b4c29e2e779d2c30cb Mon Sep 17 00:00:00 2001 From: Thomas White Date: Mon, 21 Jun 2010 17:15:33 +0200 Subject: Make UnitCell opaque --- src/cell.h | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) (limited to 'src/cell.h') diff --git a/src/cell.h b/src/cell.h index ec8a063f..0310c04e 100644 --- a/src/cell.h +++ b/src/cell.h @@ -16,27 +16,7 @@ #include #endif -typedef struct { - - /* Crystallographic representation */ - double a; /* m */ - double b; /* m */ - double c; /* m */ - double alpha; /* Radians */ - double beta; /* Radians */ - double gamma; /* Radians */ - - /* Cartesian representation */ - double ax; double bx; double cx; - double ay; double by; double cy; - double az; double bz; double cz; - - /* Cartesian representation of reciprocal axes */ - double axs; double bxs; double cxs; - double ays; double bys; double cys; - double azs; double bzs; double czs; - -} UnitCell; +typedef struct _unitcell UnitCell; extern UnitCell *cell_new(void); extern UnitCell *cell_new_from_cell(UnitCell *orig); -- cgit v1.2.3