Index: trunk/psLib/src/dataManip/psFFT.h
===================================================================
--- trunk/psLib/src/dataManip/psFFT.h	(revision 1406)
+++ trunk/psLib/src/dataManip/psFFT.h	(revision 1407)
@@ -1,2 +1,3 @@
+
 /** @file  psFFT.h
  *
@@ -7,6 +8,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-06 22:34:05 $
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-07 00:06:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -14,8 +15,8 @@
 
 #ifndef PS_FFT_H
-#define PS_FFT_H
+#    define PS_FFT_H
 
-#include "psImage.h"
-#include "psVector.h"
+#    include "psImage.h"
+#    include "psVector.h"
 
 /// @addtogroup Transform
@@ -24,29 +25,27 @@
 /** Details on FFT implementation (private). */
 
-
 typedef enum {
-    /// psImageFFT/psVectorFFT should perform a forward FFT.
+    // / psImageFFT/psVectorFFT should perform a forward FFT.
     PS_FFT_FORWARD = (-1),
 
-    ///< psImageFFT/psVectorFFT should perform a reverse FFT.
+    // /< psImageFFT/psVectorFFT should perform a reverse FFT.
     PS_FFT_REVERSE = (+1)
 } psFftDirection;
 
-psImage* psImageFFT(psImage* out, const psImage* in, psFftDirection direction);
-psImage* psImageReal(psImage *out, const psImage* in);
-psImage* psImageImaginary(psImage *out, const psImage* in);
-psImage* psImageComplex(psImage* out, psImage *real, const psImage *imag);
-psImage* psImageConjugate(psImage *out, const psImage *in);
-psImage* psImagePowerSpectrum(psImage* out, const psImage* in);
+psImage *psImageFFT(psImage * out, const psImage * in, psFftDirection direction);
+psImage *psImageReal(psImage * out, const psImage * in);
+psImage *psImageImaginary(psImage * out, const psImage * in);
+psImage *psImageComplex(psImage * out, psImage * real, const psImage * imag);
+psImage *psImageConjugate(psImage * out, const psImage * in);
+psImage *psImagePowerSpectrum(psImage * out, const psImage * in);
 
-psVector* psVectorFFT(psVector* out, const psVector* in, psFftDirection direction);
-psVector* psVectorReal(psVector* out, const psVector* in);
-psVector* psVectorImaginary(psVector* out, const psVector* in);
-psVector* psVectorComplex(psVector* out, psVector* real, const psVector* imag);
-psVector* psVectorConjugate(psVector* out, const psVector* in);
-psVector* psVectorPowerSpectrum(psVector* out, const psVector* in);
+psVector *psVectorFFT(psVector * out, const psVector * in, psFftDirection direction);
+psVector *psVectorReal(psVector * out, const psVector * in);
+psVector *psVectorImaginary(psVector * out, const psVector * in);
+psVector *psVectorComplex(psVector * out, psVector * real, const psVector * imag);
+psVector *psVectorConjugate(psVector * out, const psVector * in);
+psVector *psVectorPowerSpectrum(psVector * out, const psVector * in);
 
 /// @}
 
 #endif
-
