LibreOffice
LibreOffice 25.2 SDK API Reference
SolverStatus.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  */
10 
11 
12 module com { module sun { module star { module sheet {
13 
14 
20 constants SolverStatus
21 {
23  const byte NONE = 0;
24 
26  const byte SOLUTION_FOUND = 1;
27 
29  const byte PARSE_ERROR = 2;
30 
32  const byte ENGINE_ERROR = 3;
33 
35  const byte SOLUTION_NOT_FOUND = 4;
36 };
37 
38 
39 }; }; }; };
40 
41 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: Ambiguous.idl:20
const byte SOLUTION_FOUND
The solver finished running and a solution was successfully found.
Definition: SolverStatus.idl:26
const byte SOLUTION_NOT_FOUND
The solver finished running but a solution was not found.
Definition: SolverStatus.idl:35
const byte NONE
No status to report. Happens when the solver has not been called.
Definition: SolverStatus.idl:23
const byte PARSE_ERROR
A parse error occurred after running the solver.
Definition: SolverStatus.idl:29
const byte ENGINE_ERROR
An error occurred while loading or running the solver.
Definition: SolverStatus.idl:32