fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / connectivity / source / simpledbt / parsenode_s.hxx
blob0166933d731d3baec1c57d9a478c9b11ec09aa66
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #ifndef CONNECTIVITY_PARSENODE_SIMPLE_HXX
21 #define CONNECTIVITY_PARSENODE_SIMPLE_HXX
23 #include <connectivity/virtualdbtools.hxx>
24 #include "refbase.hxx"
26 //........................................................................
27 namespace connectivity
29 //........................................................................
31 class OSQLParseNode;
32 //================================================================
33 //= OSimpleParseNode
34 //================================================================
35 class OSimpleParseNode
36 :public simple::ISQLParseNode
37 ,public ORefBase
39 protected:
40 const OSQLParseNode* m_pFullNode;
41 sal_Bool m_bOwner;
43 public:
44 OSimpleParseNode(const OSQLParseNode* _pNode, sal_Bool _bTakeOwnership = sal_True);
45 ~OSimpleParseNode();
47 // ISQLParseNode
48 virtual void parseNodeToStr(OUString& _rString,
49 const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _rxConnection,
50 const IParseContext* _pContext
51 ) const;
53 virtual void parseNodeToPredicateStr(OUString& _rString,
54 const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _rxConnection,
55 const ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatter >& _rxFormatter,
56 const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxField,
57 const OUString &_sPredicateTableAlias,
58 const ::com::sun::star::lang::Locale& _rIntl,
59 const sal_Char _cDecSeparator,
60 const IParseContext* _pContext
61 ) const;
63 // disambiguate IReference
64 virtual oslInterlockedCount SAL_CALL acquire();
65 virtual oslInterlockedCount SAL_CALL release();
68 //........................................................................
69 } // namespace connectivity
70 //........................................................................
72 #endif // CONNECTIVITY_PARSENODE_SIMPLE_HXX
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */