paul@193 | 1 | /* |
paul@219 | 2 | * Provider support for filesystem objects. |
paul@193 | 3 | * |
paul@193 | 4 | * Copyright (C) 2021 Paul Boddie <paul@boddie.org.uk> |
paul@193 | 5 | * |
paul@193 | 6 | * This program is free software; you can redistribute it and/or |
paul@193 | 7 | * modify it under the terms of the GNU General Public License as |
paul@193 | 8 | * published by the Free Software Foundation; either version 2 of |
paul@193 | 9 | * the License, or (at your option) any later version. |
paul@193 | 10 | * |
paul@193 | 11 | * This program is distributed in the hope that it will be useful, |
paul@193 | 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
paul@193 | 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
paul@193 | 14 | * GNU General Public License for more details. |
paul@193 | 15 | * |
paul@193 | 16 | * You should have received a copy of the GNU General Public License |
paul@193 | 17 | * along with this program; if not, write to the Free Software |
paul@193 | 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, |
paul@193 | 19 | * Boston, MA 02110-1301, USA |
paul@193 | 20 | */ |
paul@193 | 21 | |
paul@219 | 22 | #include "provider.h" |
paul@193 | 23 | |
paul@193 | 24 | |
paul@193 | 25 | |
paul@219 | 26 | Provider::Provider() |
paul@193 | 27 | : NotificationSupport() |
paul@193 | 28 | { |
paul@193 | 29 | } |
paul@193 | 30 | |
paul@193 | 31 | // vim: tabstop=4 expandtab shiftwidth=4 |