1 /*
2  * Photos - access, organize and share your photos on GNOME
3  * Copyright © 2013 Álvaro Peña
4  * Copyright © 2016 – 2019 Red Hat, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 /* Based on code from:
21  *   + Documents
22  */
23 
24 #ifndef PHOTOS_FACEBOOK_ITEM_H
25 #define PHOTOS_FACEBOOK_ITEM_H
26 
27 #include "photos-base-item.h"
28 
29 G_BEGIN_DECLS
30 
31 #define PHOTOS_TYPE_FACEBOOK_ITEM (photos_facebook_item_get_type ())
32 G_DECLARE_FINAL_TYPE (PhotosFacebookItem, photos_facebook_item, PHOTOS, FACEBOOK_ITEM, PhotosBaseItem);
33 
34 G_END_DECLS
35 
36 #endif /* PHOTOS_FACEBOOK_ITEM_H */
37