Codebase list gnome-twitch / 39924c65-75e5-4fd7-93a1-6cace1bdd487/main src / gt-followed-channel-container.h
39924c65-75e5-4fd7-93a1-6cace1bdd487/main

Tree @39924c65-75e5-4fd7-93a1-6cace1bdd487/main (Download .tar.gz)

gt-followed-channel-container.h @39924c65-75e5-4fd7-93a1-6cace1bdd487/mainraw · history · blame

/*
 *  This file is part of GNOME Twitch - 'Enjoy Twitch on your GNU/Linux desktop'
 *  Copyright © 2017 Vincent Szolnoky <vinszent@vinszent.com>
 *
 *  GNOME Twitch is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  GNOME Twitch 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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with GNOME Twitch. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef GT_FOLLOWED_CHANNEL_CONTAINER_H
#define GT_FOLLOWED_CHANNEL_CONTAINER_H

#include <glib-object.h>
#include "gt-item-container.h"

G_BEGIN_DECLS

#define GT_TYPE_FOLLOWED_CHANNEL_CONTAINER gt_followed_channel_container_get_type()

G_DECLARE_FINAL_TYPE(GtFollowedChannelContainer, gt_followed_channel_container, GT, FOLLOWED_CHANNEL_CONTAINER, GtItemContainer);

struct _GtFollowedChannelContainer
{
    GtItemContainer parent_instance;
};

GtFollowedChannelContainer* gt_followed_channel_container_new();

G_END_DECLS

#endif