diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-12-31 15:15:19 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-01-29 08:09:29 +0100 |
commit | 7a6d7265634bc16bc30841990147882ce1d240ac (patch) | |
tree | 0d0aaf395bacb5fa2f7a8a94096c6046792731c9 /offapi/com | |
parent | 26ce0530cb608af1568e2689662cdc0c4b79d0e1 (diff) |
time based charting calc side
Change-Id: I0d5963a691e4495ee14e4d1228ea0ba2b1dd66d7
Diffstat (limited to 'offapi/com')
-rw-r--r-- | offapi/com/sun/star/chart2/XTimeBased.idl | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/offapi/com/sun/star/chart2/XTimeBased.idl b/offapi/com/sun/star/chart2/XTimeBased.idl new file mode 100644 index 000000000000..70ce70152487 --- /dev/null +++ b/offapi/com/sun/star/chart2/XTimeBased.idl @@ -0,0 +1,30 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * 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 com_sun_star_chart2_XTimeBased_idl +#define com_sun_star_chart2_XTimeBased_idl + +#include <com/sun/star/uno/XInterface.idl> + +module com { module sun { module star { module chart2 { + +interface XTimeBased : com::sun::star::uno::XInterface +{ + + /** + * @return + * FALSE if the data wrapped around + */ + boolean switchToNext(); +}; + +}; }; }; }; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |