From 4879eb8e6e6bf46b89a4a67f62cada82478bade5 Mon Sep 17 00:00:00 2001
From: Scott Wheeler <wheeler@kde.org>
Date: Sat, 10 Apr 2004 23:28:54 +0000
Subject: [PATCH] CVS_SILENT make some stuff as deprecated

git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@302723 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
---
 flac/flacfile.h | 7 +++++++
 mpeg/mpegfile.h | 3 +++
 2 files changed, 10 insertions(+)

diff --git a/flac/flacfile.h b/flac/flacfile.h
index 81dc1810..2a0ca015 100644
--- a/flac/flacfile.h
+++ b/flac/flacfile.h
@@ -63,6 +63,9 @@ namespace TagLib {
        * Contructs a FLAC 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.
+       *
+       * \deprecated This constructor will be dropped in favor of the one below
+       * in a future version.
        */
       File(const char *file, bool readProperties = true,
            Properties::ReadStyle propertiesStyle = Properties::Average);
@@ -159,12 +162,16 @@ namespace TagLib {
       /*!
        * Returns the block of data used by FLAC::Properties for parsing the
        * stream properties.
+       *
+       * \deprecated This method will not be public in a future release.
        */
       ByteVector streamInfoData(); // BIC: remove
 
       /*!
        * Returns the length of the audio-stream, used by FLAC::Properties for
        * calculating the bitrate.
+       *
+       * \deprecated This method will not be public in a future release.
        */
       long streamLength();  // BIC: remove
 
diff --git a/mpeg/mpegfile.h b/mpeg/mpegfile.h
index bd69d632..c70ca272 100644
--- a/mpeg/mpegfile.h
+++ b/mpeg/mpegfile.h
@@ -65,6 +65,9 @@ namespace TagLib {
        * Contructs an MPEG 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.
+       *
+       * \deprecated This constructor will be dropped in favor of the one below
+       * in a future version.
        */
       File(const char *file, bool readProperties = true,
            Properties::ReadStyle propertiesStyle = Properties::Average);