L4Re/departure

Change of libfsserver/lib/generic/provider.cc

219:c9eb29eecf69
libfsserver/lib/generic/provider.cc
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libfsserver/lib/generic/provider.cc	Sat Oct 16 23:41:12 2021 +0200
     1.3 @@ -0,0 +1,31 @@
     1.4 +/*
     1.5 + * Provider support for filesystem objects.
     1.6 + *
     1.7 + * Copyright (C) 2021 Paul Boddie <paul@boddie.org.uk>
     1.8 + *
     1.9 + * This program is free software; you can redistribute it and/or
    1.10 + * modify it under the terms of the GNU General Public License as
    1.11 + * published by the Free Software Foundation; either version 2 of
    1.12 + * the License, or (at your option) any later version.
    1.13 + *
    1.14 + * This program is distributed in the hope that it will be useful,
    1.15 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.16 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.17 + * GNU General Public License for more details.
    1.18 + *
    1.19 + * You should have received a copy of the GNU General Public License
    1.20 + * along with this program; if not, write to the Free Software
    1.21 + * Foundation, Inc., 51 Franklin Street, Fifth Floor,
    1.22 + * Boston, MA  02110-1301, USA
    1.23 + */
    1.24 +
    1.25 +#include "provider.h"
    1.26 +
    1.27 +
    1.28 +
    1.29 +Provider::Provider()
    1.30 +: NotificationSupport()
    1.31 +{
    1.32 +}
    1.33 +
    1.34 +// vim: tabstop=4 expandtab shiftwidth=4