vfs: Remove VfsSuffixPrivate

This commit is contained in:
Christian Kamm 2018-11-15 09:30:27 +01:00
parent 852f5b1a31
commit afa09e9b19
2 changed files with 0 additions and 9 deletions

View File

@ -21,13 +21,8 @@
namespace OCC {
class VfsSuffixPrivate
{
};
VfsSuffix::VfsSuffix(QObject *parent)
: Vfs(parent)
, d_ptr(new VfsSuffixPrivate)
{
}

View File

@ -21,13 +21,9 @@
namespace OCC {
class VfsSuffixPrivate;
class VfsSuffix : public Vfs
{
Q_OBJECT
Q_DECLARE_PRIVATE(VfsSuffix)
const QScopedPointer<VfsSuffixPrivate> d_ptr;
public:
explicit VfsSuffix(QObject *parent = nullptr);