v2.0.0
This commit is contained in:
parent
9b71614762
commit
8c48174b5b
1642 changed files with 28571 additions and 18190 deletions
|
@ -1,22 +1,24 @@
|
|||
/*
|
||||
* Copyright (c) 2001-2006
|
||||
* Copyright (c) 2001-2007
|
||||
* DecisionSoft Limited. All rights reserved.
|
||||
* Copyright (c) 2004-2006
|
||||
* Progress Software Corporation. All rights reserved.
|
||||
* Copyright (c) 2004-2006
|
||||
* Copyright (c) 2004-2007
|
||||
* Oracle. All rights reserved.
|
||||
*
|
||||
* See the file LICENSE for redistribution information.
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* $Id: FunctionDoc.hpp,v 1.10 2007/02/07 12:13:02 jpcs Exp $
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
* $Id: FunctionDoc.hpp,v 1.12 2007/11/28 13:13:23 jpcs Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
|
||||
Doc function
|
||||
|
||||
*/
|
||||
|
||||
#ifndef _FUNCTIONDOC_HPP
|
||||
#define _FUNCTIONDOC_HPP
|
||||
|
||||
|
@ -24,6 +26,8 @@
|
|||
|
||||
#include <xqilla/ast/XQFunction.hpp>
|
||||
|
||||
class QueryPathNode;
|
||||
|
||||
class XQILLA_API FunctionDoc : public XQFunction
|
||||
{
|
||||
public:
|
||||
|
@ -37,6 +41,12 @@ public:
|
|||
virtual ASTNode *staticTyping(StaticContext *context);
|
||||
|
||||
Sequence createSequence(DynamicContext* context, int flags=0) const;
|
||||
|
||||
QueryPathNode *getQueryPathTree() const { return queryPathTree_; }
|
||||
void setQueryPathTree(QueryPathNode *q) { queryPathTree_ = q; }
|
||||
|
||||
private:
|
||||
QueryPathNode *queryPathTree_;
|
||||
};
|
||||
|
||||
#endif // _FUNCTIONDOC_HPP
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue