1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_CHART2_SOURCE_MODEL_INC_CARTESIANCOORDINATESYSTEM_HXX
20 #define INCLUDED_CHART2_SOURCE_MODEL_INC_CARTESIANCOORDINATESYSTEM_HXX
22 #include "BaseCoordinateSystem.hxx"
27 class CartesianCoordinateSystem
: public BaseCoordinateSystem
30 explicit CartesianCoordinateSystem( sal_Int32 nDimensionCount
);
31 explicit CartesianCoordinateSystem( const CartesianCoordinateSystem
& rSource
);
32 virtual ~CartesianCoordinateSystem() override
;
34 // ____ XCoordinateSystem ____
35 virtual OUString SAL_CALL
getCoordinateSystemType() override
;
36 virtual OUString SAL_CALL
getViewServiceName() override
;
38 // ____ XCloneable ____
39 virtual css::uno::Reference
< css::util::XCloneable
> SAL_CALL
createClone() override
;
41 // ____ XServiceInfo ____
42 virtual OUString SAL_CALL
getImplementationName() override
;
43 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
44 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
47 class CartesianCoordinateSystem2d
: public CartesianCoordinateSystem
50 explicit CartesianCoordinateSystem2d();
51 virtual ~CartesianCoordinateSystem2d() override
;
53 // ____ XServiceInfo ____
54 virtual OUString SAL_CALL
getImplementationName() override
;
55 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
56 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
59 class CartesianCoordinateSystem3d
: public CartesianCoordinateSystem
62 explicit CartesianCoordinateSystem3d();
63 virtual ~CartesianCoordinateSystem3d() override
;
65 // ____ XServiceInfo ____
66 virtual OUString SAL_CALL
getImplementationName() override
;
67 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
68 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
73 // INCLUDED_CHART2_SOURCE_MODEL_INC_CARTESIANCOORDINATESYSTEM_HXX
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */