blob: daba86128aaa4612e42b153b014bea985165ef23 [file] [log] [blame]
Nicolas Jager998fbd72016-08-08 11:41:28 -04001#pragma once
2/**************************************************************************
3* Copyright (C) 2016 by Savoir-faire Linux *
4* Author: Jäger Nicolas <nicolas.jager@savoirfairelinux.com> *
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
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040020/* standard system include files. */
21#include <ppltasks.h>
Nicolas Jagereeef17c2016-08-16 10:21:54 -040022#include <iomanip>
Nicolas Jager58c70b02016-08-26 09:50:45 -040023#include <queue>
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040024
25/* required by generated headers. */
Nicolas Jager998fbd72016-08-08 11:41:28 -040026#include "App.xaml.h"
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040027#include "Account.h"
28#include "AccountsViewModel.h"
Nicolas Jagera92f1312016-08-25 08:01:22 -040029#include "Call.h"
Nicolas Jagerd76940f2016-08-31 14:44:04 -040030#include "CallsViewModel.h"
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040031#include "Contact.h"
32#include "ContactsViewModel.h"
Nicolas Jager58c70b02016-08-26 09:50:45 -040033#include "Conversation.h"
Nicolas Jagereeef17c2016-08-16 10:21:54 -040034
35/* ensure to be accessed from anywhere */
Nicolas Jager32ed1a22016-08-17 08:36:02 -040036#include "RingD.h"
Nicolas Jagereeef17c2016-08-16 10:21:54 -040037#include "RingDebug.h"
38#include "Utils.h"
atraczyk49822a32016-08-26 17:18:44 -040039#include "UserPreferences.h"