Skip to content

Commit

Permalink
doxify existing MythDate::Formats constant comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dekarl committed Dec 14, 2012
1 parent 4dd0b8d commit 3664515
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions mythtv/libs/libmythbase/mythdate.h
Expand Up @@ -11,19 +11,19 @@ namespace MythDate

typedef enum Formats
{
ISODate = Qt::ISODate, // Default UTC
kFilename = 0x000100, // Default UTC, "yyyyMMddhhmmss"
kDateFull = 0x000200, // Default local time
kDateShort = 0x000400, // Default local time
kTime = 0x000800, // Default local time
kDateTimeFull = kDateFull | kTime, // Default local time
kDateTimeShort = kDateShort | kTime, // Default local time
kAddYear = 0x001000, // Add year to string if not included
kSimplify = 0x002000, // Do Today/Yesterday/Tomorrow transform
kDatabase = 0x004000, // Default UTC, database format
kScreenShotFilename = 0x8000, // "yyyy-MM-ddThh-mm-ss.zzz"
kOverrideUTC = 0x100000, // Present date/time in UTC
kOverrideLocal = 0x200000, // Present date/time in localtime
ISODate = Qt::ISODate, ///< Default UTC
kFilename = 0x000100, ///< Default UTC, "yyyyMMddhhmmss"
kDateFull = 0x000200, ///< Default local time
kDateShort = 0x000400, ///< Default local time
kTime = 0x000800, ///< Default local time
kDateTimeFull = kDateFull | kTime, ///< Default local time
kDateTimeShort = kDateShort | kTime, ///< Default local time
kAddYear = 0x001000, ///< Add year to string if not included
kSimplify = 0x002000, ///< Do Today/Yesterday/Tomorrow transform
kDatabase = 0x004000, ///< Default UTC, database format
kScreenShotFilename = 0x8000, ///< "yyyy-MM-ddThh-mm-ss.zzz"
kOverrideUTC = 0x100000, ///< Present date/time in UTC
kOverrideLocal = 0x200000, ///< Present date/time in localtime
} Format;

/// Returns current Date and Time in UTC.
Expand Down

0 comments on commit 3664515

Please sign in to comment.