From d33f68ea514178b2873de59613afc028777c5221 Mon Sep 17 00:00:00 2001 From: Steve Brokenshire Date: Sun, 25 Dec 2016 01:28:05 +0000 Subject: [PATCH] Added types.h header --- source/common/types.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 source/common/types.h diff --git a/source/common/types.h b/source/common/types.h new file mode 100644 index 0000000..f6ea2e2 --- /dev/null +++ b/source/common/types.h @@ -0,0 +1,28 @@ +// types.h - Types header +// +// (c) 2016 Xestia Software Development. +// +// This file is part of Xestia Calendar. +// +// Xestia Calendar 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, version 3 of the license. +// +// Xestia Calendar 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 Xestia Calendar. If not, see + +#ifndef __COMMON_TYPES_H__ +#define __COMMON_TYPES_H__ + +enum AccountType{ + ACCOUNTTYPE_UNKNOWN = -1, + ACCOUNTTYPE_LOCAL, + ACCOUNTTYPE_CALDAV +}; + +#endif \ No newline at end of file -- 2.39.2