LibreOffice
LibreOffice 25.8 SDK API Reference
Constants.idl
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
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 
10 module org { module libreoffice { module embindtest {
11 
12 constants Constants {
13  const boolean Boolean = True;
14  const byte Byte = -12;
15  const short Short = -1234;
16  const unsigned short UnsignedShort = 54321;
17  const long Long = -123456;
18  const unsigned long UnsignedLong = 3456789012;
19  const hyper Hyper = -123456789;
20  const unsigned hyper UnsignedHyper = 9876543210;
21  const float Float = -10.25;
22  const double Double = 100.5;
23 };
24 
25 }; }; };
26 
27 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
org::libreoffice::embindtest::Constants::Short
const short Short
Definition: Constants.idl:15
org::libreoffice::embindtest::Constants::UnsignedShort
const unsigned short UnsignedShort
Definition: Constants.idl:16
org::libreoffice::embindtest::Constants::UnsignedHyper
const unsigned hyper UnsignedHyper
Definition: Constants.idl:20
org::libreoffice::embindtest::Constants::UnsignedLong
const unsigned long UnsignedLong
Definition: Constants.idl:18
org::libreoffice::embindtest::Constants::Byte
const byte Byte
Definition: Constants.idl:14
org
Definition: SyncDbusSessionHelper.idl:10
org::libreoffice::embindtest::Constants::Float
const float Float
Definition: Constants.idl:21
org::libreoffice::embindtest::Constants::Hyper
const hyper Hyper
Definition: Constants.idl:19
org::libreoffice::embindtest::Constants::Long
const long Long
Definition: Constants.idl:17
org::libreoffice::embindtest::Constants::Double
const double Double
Definition: Constants.idl:22
org::libreoffice::embindtest::Constants::Boolean
const boolean Boolean
Definition: Constants.idl:13