Improved reference-counted pointer

This commit is contained in:
Tsuda Kageyu
2013-04-29 20:15:05 +09:00
parent 82e616101a
commit 36ceaadfaa
17 changed files with 409 additions and 156 deletions

View File

@ -205,7 +205,7 @@ namespace TagLib
ByteVector render(const String &name, int kind = 0) const;
class AttributePrivate;
RefCountPtr<AttributePrivate> d;
TAGLIB_SHARED_PTR<AttributePrivate> d;
};
}

View File

@ -231,7 +231,7 @@ namespace TagLib
#endif
private:
class PicturePrivate;
RefCountPtr<PicturePrivate> d;
TAGLIB_SHARED_PTR<PicturePrivate> d;
};
}
}