summaryrefslogtreecommitdiff
path: root/support/dktools/dk4timec.h
diff options
context:
space:
mode:
Diffstat (limited to 'support/dktools/dk4timec.h')
-rw-r--r--support/dktools/dk4timec.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/support/dktools/dk4timec.h b/support/dktools/dk4timec.h
deleted file mode 100644
index a66b1b155c..0000000000
--- a/support/dktools/dk4timec.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
-Copyright 2020, Dirk Krause. All rights reserved.
-SPDX-License-Identifier: BSD-3-Clause
-*/
-
-#ifndef DK4TIMEC_H_INCLUDED
-/** Protection against multiple inclusions */
-#define DK4TIMEC_H_INCLUDED 1
-
-/** @file dk4timec.h Date/time formats.
-*/
-
-/** Date/time formats.
-*/
-enum {
- /** Complete date and time sortabel,
- yyyy-mm-dd hh:mm:ss
- */
- DK4_TIMEFORMAT_DATE_TIME = 1,
-
- /** Date in sortable format,
- yyyy-mm-dd
- */
- DK4_TIMEFORMAT_DATE_SORTABLE ,
-
- /** English/american date format,
- mm/dd/yyyy
- */
- DK4_TIMEFORMAT_DATE_ENGLISH ,
-
- /** German date format
- dd.mm.yyyy
- */
- DK4_TIMEFORMAT_DATE_GERMAN
-};
-
-#endif
-