]> granicus.if.org Git - taglib/commitdiff
Uff. Tabs-be-gone!
authorScott Wheeler <wheeler@kde.org>
Fri, 16 May 2008 07:05:55 +0000 (07:05 +0000)
committerScott Wheeler <wheeler@kde.org>
Fri, 16 May 2008 07:05:55 +0000 (07:05 +0000)
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@808250 283d02a7-25f6-0310-bc7c-ecb5cbfe19da

taglib/riff/aiff/aifffile.h

index de31c31441f4fdc17514295529b1d7a4d5c30744..f81b4a15a190e023c1cad2eab9b95a9353a5ec6e 100644 (file)
@@ -61,43 +61,43 @@ namespace TagLib {
       class TAGLIB_EXPORT File : public TagLib::RIFF::File
       {
       public:
-       /*!
-        * Contructs an AIFF file from \a file.  If \a readProperties is true the
-        * file's audio properties will also be read using \a propertiesStyle.  If
-        * false, \a propertiesStyle is ignored.
-        */
-       File(FileName file, bool readProperties = true,
-            Properties::ReadStyle propertiesStyle = Properties::Average);
-
-       /*!
-        * Destroys this instance of the File.
-        */
-       virtual ~File();
-
-       /*!
-        * Returns the Tag for this file.
-        */
-       virtual ID3v2::Tag *tag() const;
-
-       /*!
-        * Returns the AIFF::Properties for this file.  If no audio properties
-        * were read then this will return a null pointer.
-        */
-       virtual Properties *audioProperties() const;
-
-       /*!
-        * Saves the file.
-        */
-       virtual bool save();
+        /*!
+         * Contructs an AIFF file from \a file.  If \a readProperties is true the
+         * file's audio properties will also be read using \a propertiesStyle.  If
+         * false, \a propertiesStyle is ignored.
+         */
+        File(FileName file, bool readProperties = true,
+             Properties::ReadStyle propertiesStyle = Properties::Average);
+
+        /*!
+         * Destroys this instance of the File.
+         */
+        virtual ~File();
+
+        /*!
+         * Returns the Tag for this file.
+         */
+        virtual ID3v2::Tag *tag() const;
+
+        /*!
+         * Returns the AIFF::Properties for this file.  If no audio properties
+         * were read then this will return a null pointer.
+         */
+        virtual Properties *audioProperties() const;
+
+        /*!
+         * Saves the file.
+         */
+        virtual bool save();
 
       private:
-       File(const File &);
-       File &operator=(const File &);
+        File(const File &);
+        File &operator=(const File &);
 
-       void read(bool readProperties, Properties::ReadStyle propertiesStyle);
+        void read(bool readProperties, Properties::ReadStyle propertiesStyle);
 
-       class FilePrivate;
-       FilePrivate *d;
+        class FilePrivate;
+        FilePrivate *d;
       };
     }
   }