diff src/Modules/Input/ModuleFileInput.h @ 7:1a1988ec40e7

- Replacing tabs with spaces for indentation
author tomwalters
date Thu, 18 Feb 2010 20:04:04 +0000
parents decdac21cfc2
children fcbf85ce59fb
line wrap: on
line diff
--- a/src/Modules/Input/ModuleFileInput.h	Thu Feb 18 19:35:07 2010 +0000
+++ b/src/Modules/Input/ModuleFileInput.h	Thu Feb 18 20:04:04 2010 +0000
@@ -37,14 +37,14 @@
 namespace aimc {
 class ModuleFileInput : public Module {
  public:
-	ModuleFileInput(Parameters *pParam);
-	virtual ~ModuleFileInput();
+  ModuleFileInput(Parameters *pParam);
+  virtual ~ModuleFileInput();
 
-	/*! \brief Initializes this input device using an audio file
-	 *  \param sFilename Path of the file to load
-	 *  \return true on success, false on error
-	 */
-	bool LoadFile(const char *sFilename);
+  /*! \brief Initializes this input device using an audio file
+   *  \param sFilename Path of the file to load
+   *  \return true on success, false on error
+   */
+  bool LoadFile(const char *sFilename);
 
   //! \brief Process the loaded file.
   void Process();
@@ -52,7 +52,7 @@
   //! \brief Dummy Initialize function. Call LoadFile instead.
   virtual bool Initialize(const SignalBank &input);
 
-  //! \brief Dummy funciton to comply with the Module specification. Gives an 
+  //! \brief Dummy funciton to comply with the Module specification. Gives an
   //  error message when called.
   virtual void Process(const SignalBank &input);
 
@@ -65,10 +65,10 @@
   //! \brief Rewind to the start of the file
   virtual void ResetInternal();
 
-	//! \brief File descriptor
-	SNDFILE *file_handle_;
+  //! \brief File descriptor
+  SNDFILE *file_handle_;
 
-	//! \brief Current position in time of the file
+  //! \brief Current position in time of the file
   int file_position_samples_;
   bool file_loaded_;
   int audio_channels_;