aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/it/itfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'taglib/it/itfile.h')
-rw-r--r--taglib/it/itfile.h106
1 files changed, 53 insertions, 53 deletions
diff --git a/taglib/it/itfile.h b/taglib/it/itfile.h
index bc6ac3ef..3a50b062 100644
--- a/taglib/it/itfile.h
+++ b/taglib/it/itfile.h
@@ -33,59 +33,59 @@
namespace TagLib {
- namespace IT {
-
- class TAGLIB_EXPORT File : public Mod::File {
- public:
- /*!
- * Contructs a Impulse Tracker 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,
- AudioProperties::ReadStyle propertiesStyle =
- AudioProperties::Average);
-
- /*!
- * Contructs a Impulse Tracker file from \a stream. If \a readProperties
- * is true the file's audio properties will also be read using
- * \a propertiesStyle. If false, \a propertiesStyle is ignored.
- */
- File(IOStream *stram, bool readProperties = true,
- AudioProperties::ReadStyle propertiesStyle =
- AudioProperties::Average);
-
- /*!
- * Destroys this instance of the File.
- */
- virtual ~File();
-
- Mod::Tag *tag() const;
-
- /*!
- * Returns the IT::Properties for this file. If no audio properties
- * were read then this will return a null pointer.
- */
- IT::Properties *audioProperties() const;
-
- /*!
- * Save the file.
- * This is the same as calling save(AllTags);
- *
- * \note Saving Impulse Tracker tags is not supported.
- */
- bool save();
-
- private:
- File(const File &);
- File &operator=(const File &);
-
- void read(bool readProperties);
-
- class FilePrivate;
- FilePrivate *d;
- };
- }
+ namespace IT {
+
+ class TAGLIB_EXPORT File : public Mod::File {
+ public:
+ /*!
+ * Contructs a Impulse Tracker 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,
+ AudioProperties::ReadStyle propertiesStyle =
+ AudioProperties::Average);
+
+ /*!
+ * Contructs a Impulse Tracker file from \a stream. If \a readProperties
+ * is true the file's audio properties will also be read using
+ * \a propertiesStyle. If false, \a propertiesStyle is ignored.
+ */
+ File(IOStream *stram, bool readProperties = true,
+ AudioProperties::ReadStyle propertiesStyle =
+ AudioProperties::Average);
+
+ /*!
+ * Destroys this instance of the File.
+ */
+ virtual ~File();
+
+ Mod::Tag *tag() const;
+
+ /*!
+ * Returns the IT::Properties for this file. If no audio properties
+ * were read then this will return a null pointer.
+ */
+ IT::Properties *audioProperties() const;
+
+ /*!
+ * Save the file.
+ * This is the same as calling save(AllTags);
+ *
+ * \note Saving Impulse Tracker tags is not supported.
+ */
+ bool save();
+
+ private:
+ File(const File &);
+ File &operator=(const File &);
+
+ void read(bool readProperties);
+
+ class FilePrivate;
+ FilePrivate *d;
+ };
+ }
}
#endif