LibreOffice
LibreOffice 25.2 SDK API Reference
 
Loading...
Searching...
No Matches
DateTimeRange.idl
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20
21module com { module sun { module star { module util {
22
23
26published struct DateTimeRange
27{
30 unsigned long StartNanoSeconds;
31
34 unsigned short StartSeconds;
35
38 unsigned short StartMinutes;
39
42 unsigned short StartHours;
43
46 unsigned short StartDay;
47
50 unsigned short StartMonth;
51
54 short StartYear;
55
58 unsigned long EndNanoSeconds;
59
62 unsigned short EndSeconds;
63
66 unsigned short EndMinutes;
67
70 unsigned short EndHours;
71
74 unsigned short EndDay;
75
78 unsigned short EndMonth;
79
82 short EndYear;
83
88 boolean IsUTC;
89
90};
91
92
93}; }; }; };
94
95/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition Ambiguous.idl:20
represents a range of date+time values.
Definition DateTimeRange.idl:27
unsigned short EndDay
contains the end day of month (1-31 or 0 for a void date) for the range.
Definition DateTimeRange.idl:74
unsigned short StartHours
contains the start hour (0-23) for the range.
Definition DateTimeRange.idl:42
unsigned long StartNanoSeconds
contains the start nanoseconds (0 - 999 999 999) for the range.
Definition DateTimeRange.idl:30
unsigned short StartMonth
contains the start month of year (1-12 or 0 for a void date) for the range.
Definition DateTimeRange.idl:50
unsigned short StartMinutes
contains the start minutes (0-59) for the range.
Definition DateTimeRange.idl:38
short StartYear
contains the start year for the range.
Definition DateTimeRange.idl:54
unsigned short EndMinutes
contains the end minutes (0-59) for the range.
Definition DateTimeRange.idl:66
boolean IsUTC
true: time zone is UTC false: unknown time zone.
Definition DateTimeRange.idl:88
unsigned short EndMonth
contains the end month of year (1-12 or 0 for a void date) for the range.
Definition DateTimeRange.idl:78
unsigned short EndHours
contains the end hour (0-23) for the range.
Definition DateTimeRange.idl:70
unsigned short EndSeconds
contains the end seconds (0-59) for the range.
Definition DateTimeRange.idl:62
unsigned long EndNanoSeconds
contains the end nanoseconds (0 - 999 999 999) for the range.
Definition DateTimeRange.idl:58
unsigned short StartDay
contains the start day of month (1-31 or 0 for a void date) for the range.
Definition DateTimeRange.idl:46
unsigned short StartSeconds
contains the start seconds (0-59) for the range.
Definition DateTimeRange.idl:34
short EndYear
contains the end year for the range.
Definition DateTimeRange.idl:82