X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Flibsharing%2Fsharing-service.h;fp=src%2Flibsharing%2Fsharing-service.h;h=4f794aa457676d341537eb5346a436b440a35eaa;hb=3787cd323f8bae8096463890982f100a69e348d2;hp=0000000000000000000000000000000000000000;hpb=c41d20b662ee28711818d5ff1e02c43404876c79;p=yandexfotkisp diff --git a/src/libsharing/sharing-service.h b/src/libsharing/sharing-service.h new file mode 100644 index 0000000..4f794aa --- /dev/null +++ b/src/libsharing/sharing-service.h @@ -0,0 +1,47 @@ +/* + * This file is part of Sharing Application Library + * + * Copyright (C) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). + * + * Contact: Alexander Bokovoy + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * version 2.1 as published by the Free Software Foundation. + * + * 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, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301 USA + * + */ + +/** + * SECTION:sharing-service + * @short_description: Object used to get information on sharing services + * defined on device. + * + * #SharingService is abstraction of sharing services defined on device. + * It provides easy API to get all needed information out of + * definition files. + */ + +#ifndef _SHARING_SERVICE_H_ +#define _SHARING_SERVICE_H_ + +#include + +G_BEGIN_DECLS + +typedef struct SharingService SharingService; + +gchar * sharing_service_get_name (SharingService * self); + +G_END_DECLS + +#endif /* #ifndef _SHARING_SERVICE_H_ */