|
From: <kin...@us...> - 2003-11-16 16:26:06
|
Update of /cvsroot/teem/teem/src/nrrd
In directory sc8-pr-cvs1:/tmp/cvs-serv16086/nrrd
Modified Files:
methodsNrrd.c nrrd.h
Log Message:
API CHANGE: removed nrrdUnwrap: this was just a wrapper around nrrdNix, and nothing in teem uses it. Nice to have as a pair for nrrdWrap, but its still fat, so it goes
Index: methodsNrrd.c
===================================================================
RCS file: /cvsroot/teem/teem/src/nrrd/methodsNrrd.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** methodsNrrd.c 16 Nov 2003 06:03:47 -0000 1.32
--- methodsNrrd.c 16 Nov 2003 16:25:19 -0000 1.33
***************
*** 415,430 ****
}
-
- /*
- ******** nrrdUnwrap()
- **
- ** a wrapper around nrrdNix()
- */
- Nrrd *
- nrrdUnwrap (Nrrd *nrrd) {
-
- return nrrdNix(nrrd);
- }
-
/*
void
--- 415,418 ----
Index: nrrd.h
===================================================================
RCS file: /cvsroot/teem/teem/src/nrrd/nrrd.h,v
retrieving revision 1.122
retrieving revision 1.123
diff -C2 -d -r1.122 -r1.123
*** nrrd.h 16 Nov 2003 06:04:35 -0000 1.122
--- nrrd.h 16 Nov 2003 16:25:19 -0000 1.123
***************
*** 496,500 ****
extern int nrrdWrap(Nrrd *nrrd, void *data, int type, int dim,
... /* sx, sy, .., axis(dim-1) size */);
- extern Nrrd *nrrdUnwrap(Nrrd *nrrd);
extern int nrrdCopy(Nrrd *nout, const Nrrd *nin);
extern int nrrdAlloc_nva(Nrrd *nrrd, int type, int dim, const int *size);
--- 496,499 ----
|