summaryrefslogtreecommitdiffstats
path: root/comm/calendar/base/src/TimezoneDatabase.h
diff options
context:
space:
mode:
Diffstat (limited to 'comm/calendar/base/src/TimezoneDatabase.h')
-rw-r--r--comm/calendar/base/src/TimezoneDatabase.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/comm/calendar/base/src/TimezoneDatabase.h b/comm/calendar/base/src/TimezoneDatabase.h
new file mode 100644
index 0000000000..df3f782309
--- /dev/null
+++ b/comm/calendar/base/src/TimezoneDatabase.h
@@ -0,0 +1,20 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+#ifndef mozilla_calTimezoneDatabase_h__
+#define mozilla_calTimezoneDatabase_h__
+
+#include "calITimezoneDatabase.h"
+
+class TimezoneDatabase final : public calITimezoneDatabase {
+ NS_DECL_ISUPPORTS
+ NS_DECL_CALITIMEZONEDATABASE
+
+ public:
+ TimezoneDatabase() = default;
+
+ private:
+ ~TimezoneDatabase() = default;
+};
+
+#endif