9ce1fb76250276a9f11c784fb732ebcedd3b2239
[cascardo/sgp.git] / src / main.c
1 /*
2  *  Copyright (C) 2013  Thadeu Lima de Souza Cascardo <cascardo@cascardo.info>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include <sgp/share.h>
20
21 int main(int argc, char **argv)
22 {
23         struct sgp_group *group;
24         struct sgp_msg *msg;
25         struct sgp_friend *friend;
26         /* TODO: access a database here? */
27         group = sgp_group_new();
28         friend = sgp_friend_new("Thadeu Cascardo");
29         msg = sgp_msg_new("New message for you");
30         sgp_group_add_friend(group, friend);
31         sgp_share(group, msg);
32         return 0;
33 }