From 34f9a1e827e37f7172d9ebea3e511e1349da1f7e Mon Sep 17 00:00:00 2001 From: Aaron Seigo Date: Tue, 16 Dec 2014 08:33:37 +0100 Subject: split out the resource bits into their own file --- common/resource.cpp | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 common/resource.cpp (limited to 'common/resource.cpp') diff --git a/common/resource.cpp b/common/resource.cpp new file mode 100644 index 0000000..26d57d5 --- /dev/null +++ b/common/resource.cpp @@ -0,0 +1,49 @@ +/* + * Copyright (C) 2014 Aaron Seigo + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) version 3, or any + * later version accepted by the membership of KDE e.V. (or its + * successor approved by the membership of KDE e.V.), which shall + * act as a proxy defined in Section 6 of version 3 of the license. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +#include "resource.h" + +namespace Akonadi2 +{ + +Resource::Resource() + : d(0) +{ + +} + +Resource::~Resource() +{ + //delete d; +} + +ResourceFactory::ResourceFactory(QObject *parent) + : QObject(parent), + d(0) +{ + +} + +ResourceFactory::~ResourceFactory() +{ + //delete d; +} + +} // namespace Akonadi2 -- cgit v1.2.3