2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-05-05 10:28:32 +02:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2010-05-05 10:28:32 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-05-05 10:28:32 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2010-05-05 10:28:32 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-05-05 10:28:32 +02:00
|
|
|
|
|
|
|
|
#ifndef CPLUSPLUS_LOOKUPCONTEXT_H
|
|
|
|
|
#define CPLUSPLUS_LOOKUPCONTEXT_H
|
|
|
|
|
|
|
|
|
|
#include "CppDocument.h"
|
|
|
|
|
#include "LookupItem.h"
|
2012-11-16 08:16:15 +01:00
|
|
|
#include "AlreadyConsideredClassContainer.h"
|
2013-03-27 18:54:03 +01:00
|
|
|
|
|
|
|
|
#include <cplusplus/FullySpecifiedType.h>
|
|
|
|
|
#include <cplusplus/Type.h>
|
|
|
|
|
#include <cplusplus/SymbolVisitor.h>
|
|
|
|
|
#include <cplusplus/Control.h>
|
|
|
|
|
#include <cplusplus/Name.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QSet>
|
2013-03-27 18:54:03 +01:00
|
|
|
#include <QMap>
|
|
|
|
|
|
2010-05-06 11:26:23 +02:00
|
|
|
#include <map>
|
|
|
|
|
#include <functional>
|
2010-05-05 10:28:32 +02:00
|
|
|
|
|
|
|
|
namespace CPlusPlus {
|
|
|
|
|
|
2013-03-01 18:02:50 +01:00
|
|
|
namespace Internal {
|
|
|
|
|
struct FullyQualifiedName
|
|
|
|
|
{
|
|
|
|
|
QList<const Name *> fqn;
|
|
|
|
|
|
|
|
|
|
FullyQualifiedName(const QList<const Name *> &fqn)
|
|
|
|
|
: fqn(fqn)
|
|
|
|
|
{}
|
|
|
|
|
};
|
|
|
|
|
} // namespace Internal;
|
|
|
|
|
|
2010-05-05 10:28:32 +02:00
|
|
|
class CreateBindings;
|
|
|
|
|
|
|
|
|
|
class CPLUSPLUS_EXPORT ClassOrNamespace
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ClassOrNamespace(CreateBindings *factory, ClassOrNamespace *parent);
|
2013-03-01 18:02:50 +01:00
|
|
|
~ClassOrNamespace();
|
2010-05-05 10:28:32 +02:00
|
|
|
|
2010-05-12 16:04:43 +02:00
|
|
|
const TemplateNameId *templateId() const;
|
2011-08-19 13:10:36 +02:00
|
|
|
ClassOrNamespace *instantiationOrigin() const;
|
|
|
|
|
|
2010-05-10 12:19:13 +02:00
|
|
|
ClassOrNamespace *parent() const;
|
2010-05-05 10:28:32 +02:00
|
|
|
QList<ClassOrNamespace *> usings() const;
|
2012-10-25 07:56:01 +02:00
|
|
|
QList<Enum *> unscopedEnums() const;
|
2010-05-05 10:28:32 +02:00
|
|
|
QList<Symbol *> symbols() const;
|
|
|
|
|
|
|
|
|
|
ClassOrNamespace *globalNamespace() const;
|
|
|
|
|
|
2010-07-16 11:03:39 +02:00
|
|
|
QList<LookupItem> lookup(const Name *name);
|
|
|
|
|
QList<LookupItem> find(const Name *name);
|
2010-05-05 10:28:32 +02:00
|
|
|
|
2010-05-14 13:44:54 +02:00
|
|
|
ClassOrNamespace *lookupType(const Name *name);
|
|
|
|
|
ClassOrNamespace *findType(const Name *name);
|
2010-05-05 10:28:32 +02:00
|
|
|
|
2013-03-01 18:02:50 +01:00
|
|
|
Symbol *lookupInScope(const QList<const Name *> &fullName);
|
|
|
|
|
|
2010-05-05 10:28:32 +02:00
|
|
|
private:
|
2013-02-19 08:44:44 +01:00
|
|
|
typedef std::map<const Name *, ClassOrNamespace *, Name::Compare> Table;
|
|
|
|
|
typedef std::map<const TemplateNameId *, ClassOrNamespace *, TemplateNameId::Compare> TemplateNameIdTable;
|
|
|
|
|
|
2010-05-05 10:28:32 +02:00
|
|
|
/// \internal
|
|
|
|
|
void flush();
|
|
|
|
|
|
|
|
|
|
/// \internal
|
2011-08-19 13:10:36 +02:00
|
|
|
ClassOrNamespace *findOrCreateType(const Name *name, ClassOrNamespace *origin = 0);
|
2010-05-11 10:20:51 +02:00
|
|
|
|
2010-05-05 10:28:32 +02:00
|
|
|
void addTodo(Symbol *symbol);
|
|
|
|
|
void addSymbol(Symbol *symbol);
|
2012-10-25 07:56:01 +02:00
|
|
|
void addUnscopedEnum(Enum *e);
|
2010-05-05 10:28:32 +02:00
|
|
|
void addUsing(ClassOrNamespace *u);
|
2010-05-14 13:49:16 +02:00
|
|
|
void addNestedType(const Name *alias, ClassOrNamespace *e);
|
2010-05-05 10:28:32 +02:00
|
|
|
|
2010-07-16 11:03:39 +02:00
|
|
|
QList<LookupItem> lookup_helper(const Name *name, bool searchInEnclosingScope);
|
2010-05-14 13:54:56 +02:00
|
|
|
|
2010-05-05 10:28:32 +02:00
|
|
|
void lookup_helper(const Name *name, ClassOrNamespace *binding,
|
2010-09-02 11:59:01 +02:00
|
|
|
QList<LookupItem> *result,
|
|
|
|
|
QSet<ClassOrNamespace *> *processed,
|
|
|
|
|
const TemplateNameId *templateId);
|
2010-05-05 10:28:32 +02:00
|
|
|
|
2010-05-14 13:54:56 +02:00
|
|
|
ClassOrNamespace *lookupType_helper(const Name *name, QSet<ClassOrNamespace *> *processed,
|
2011-08-19 13:10:36 +02:00
|
|
|
bool searchInEnclosingScope, ClassOrNamespace *origin);
|
2010-05-14 13:54:56 +02:00
|
|
|
|
2012-08-15 12:50:01 +02:00
|
|
|
ClassOrNamespace *nestedType(const Name *name, ClassOrNamespace *origin);
|
2010-05-05 10:28:32 +02:00
|
|
|
|
2012-12-07 14:31:32 +01:00
|
|
|
void instantiateNestedClasses(ClassOrNamespace *enclosingTemplateClass,
|
|
|
|
|
Clone &cloner,
|
|
|
|
|
Subst &subst,
|
|
|
|
|
ClassOrNamespace *enclosingTemplateClassInstantiation);
|
|
|
|
|
bool isInstantiateNestedClassNeeded(const QList<Symbol *>& symbols, const Subst &subst) const;
|
2013-02-19 08:44:44 +01:00
|
|
|
ClassOrNamespace *findSpecializationWithPointer(const TemplateNameId *templId,
|
|
|
|
|
const TemplateNameIdTable &specializations);
|
2012-12-07 14:31:32 +01:00
|
|
|
|
2010-05-05 10:28:32 +02:00
|
|
|
CreateBindings *_factory;
|
|
|
|
|
ClassOrNamespace *_parent;
|
|
|
|
|
QList<Symbol *> _symbols;
|
|
|
|
|
QList<ClassOrNamespace *> _usings;
|
2010-05-06 11:26:23 +02:00
|
|
|
Table _classOrNamespaces;
|
2010-05-05 10:28:32 +02:00
|
|
|
QList<Enum *> _enums;
|
|
|
|
|
QList<Symbol *> _todo;
|
2012-08-15 12:50:01 +02:00
|
|
|
QSharedPointer<Control> _control;
|
2013-01-12 22:05:41 +01:00
|
|
|
TemplateNameIdTable _specializations;
|
2013-02-27 07:40:55 +01:00
|
|
|
QMap<const TemplateNameId *, ClassOrNamespace *> _instantiations;
|
2013-04-10 23:30:18 +02:00
|
|
|
QHash<const AnonymousNameId *, ClassOrNamespace *> _anonymouses;
|
2010-05-05 10:28:32 +02:00
|
|
|
|
2013-03-01 18:02:50 +01:00
|
|
|
QHash<Internal::FullyQualifiedName, Symbol *> *_scopeLookupCache;
|
|
|
|
|
|
2010-05-06 14:01:38 +02:00
|
|
|
// it's an instantiation.
|
|
|
|
|
const TemplateNameId *_templateId;
|
2011-08-19 13:10:36 +02:00
|
|
|
ClassOrNamespace *_instantiationOrigin;
|
2010-05-06 14:01:38 +02:00
|
|
|
|
2012-09-30 23:19:53 +02:00
|
|
|
AlreadyConsideredClassContainer<Class> _alreadyConsideredClasses;
|
|
|
|
|
AlreadyConsideredClassContainer<TemplateNameId> _alreadyConsideredTemplates;
|
|
|
|
|
|
2012-12-07 14:31:32 +01:00
|
|
|
class NestedClassInstantiator
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
NestedClassInstantiator(CreateBindings *factory, Clone &cloner, Subst &subst)
|
|
|
|
|
: _factory(factory)
|
|
|
|
|
, _cloner(cloner)
|
|
|
|
|
, _subst(subst)
|
|
|
|
|
{}
|
|
|
|
|
void instantiate(ClassOrNamespace *enclosingTemplateClass,
|
|
|
|
|
ClassOrNamespace *enclosingTemplateClassInstantiation);
|
|
|
|
|
private:
|
|
|
|
|
bool isInstantiateNestedClassNeeded(const QList<Symbol *> &symbols) const;
|
|
|
|
|
bool containsTemplateType(Declaration *declaration) const;
|
|
|
|
|
bool containsTemplateType(Function *function) const;
|
2013-04-04 12:07:44 +02:00
|
|
|
NamedType *findNamedType(Type *memberType) const;
|
2012-12-07 14:31:32 +01:00
|
|
|
|
|
|
|
|
QSet<ClassOrNamespace *> _alreadyConsideredNestedClassInstantiations;
|
|
|
|
|
CreateBindings *_factory;
|
|
|
|
|
Clone &_cloner;
|
|
|
|
|
Subst &_subst;
|
|
|
|
|
};
|
|
|
|
|
|
2012-10-18 15:06:13 +02:00
|
|
|
#ifdef DEBUG_LOOKUP
|
2012-11-19 11:20:11 +01:00
|
|
|
public:
|
2012-10-18 15:06:13 +02:00
|
|
|
const Name *_name;
|
|
|
|
|
#endif // DEBUG_LOOKUP
|
|
|
|
|
|
2010-05-05 10:28:32 +02:00
|
|
|
friend class CreateBindings;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class CPLUSPLUS_EXPORT CreateBindings: protected SymbolVisitor
|
|
|
|
|
{
|
|
|
|
|
Q_DISABLE_COPY(CreateBindings)
|
|
|
|
|
|
|
|
|
|
public:
|
2010-06-04 17:58:29 +02:00
|
|
|
CreateBindings(Document::Ptr thisDocument, const Snapshot &snapshot, QSharedPointer<Control> control);
|
2010-05-05 10:28:32 +02:00
|
|
|
virtual ~CreateBindings();
|
|
|
|
|
|
2010-05-11 10:12:49 +02:00
|
|
|
/// Returns the binding for the global namespace.
|
2010-05-05 10:28:32 +02:00
|
|
|
ClassOrNamespace *globalNamespace() const;
|
|
|
|
|
|
2010-05-11 10:12:49 +02:00
|
|
|
/// Finds the binding associated to the given symbol.
|
2012-12-07 14:31:32 +01:00
|
|
|
ClassOrNamespace *lookupType(Symbol *symbol,
|
|
|
|
|
ClassOrNamespace* enclosingTemplateInstantiation = 0);
|
|
|
|
|
ClassOrNamespace *lookupType(const QList<const Name *> &path,
|
|
|
|
|
ClassOrNamespace* enclosingTemplateInstantiation = 0);
|
2010-05-11 10:12:49 +02:00
|
|
|
|
|
|
|
|
/// Returns the Control that must be used to create temporary symbols.
|
2010-05-05 10:28:32 +02:00
|
|
|
/// \internal
|
2010-06-04 17:58:29 +02:00
|
|
|
QSharedPointer<Control> control() const;
|
2010-05-05 10:28:32 +02:00
|
|
|
|
2012-10-08 13:23:21 +02:00
|
|
|
bool expandTemplates() const
|
|
|
|
|
{ return _expandTemplates; }
|
|
|
|
|
void setExpandTemplates(bool expandTemplates)
|
|
|
|
|
{ _expandTemplates = expandTemplates; }
|
|
|
|
|
|
2010-05-11 10:12:49 +02:00
|
|
|
/// Searches in \a scope for symbols with the given \a name.
|
|
|
|
|
/// Store the result in \a results.
|
2010-05-05 10:28:32 +02:00
|
|
|
/// \internal
|
2010-07-16 11:03:39 +02:00
|
|
|
void lookupInScope(const Name *name, Scope *scope, QList<LookupItem> *result,
|
|
|
|
|
const TemplateNameId *templateId, ClassOrNamespace *binding);
|
2010-05-05 10:28:32 +02:00
|
|
|
|
2010-05-11 10:12:49 +02:00
|
|
|
/// Create bindings for the symbols reachable from \a rootSymbol.
|
2010-05-06 14:01:38 +02:00
|
|
|
/// \internal
|
2010-05-11 10:12:49 +02:00
|
|
|
void process(Symbol *rootSymbol, ClassOrNamespace *classOrNamespace);
|
2010-05-06 14:01:38 +02:00
|
|
|
|
2010-05-11 10:12:49 +02:00
|
|
|
/// Create an empty ClassOrNamespace binding with the given \a parent.
|
2010-05-06 14:01:38 +02:00
|
|
|
/// \internal
|
2010-05-11 10:03:30 +02:00
|
|
|
ClassOrNamespace *allocClassOrNamespace(ClassOrNamespace *parent);
|
2010-05-06 14:01:38 +02:00
|
|
|
|
2010-05-05 10:28:32 +02:00
|
|
|
protected:
|
|
|
|
|
using SymbolVisitor::visit;
|
|
|
|
|
|
2010-05-11 10:12:49 +02:00
|
|
|
/// Change the current ClassOrNamespace binding.
|
2010-05-11 10:03:30 +02:00
|
|
|
ClassOrNamespace *switchCurrentClassOrNamespace(ClassOrNamespace *classOrNamespace);
|
2010-05-05 10:28:32 +02:00
|
|
|
|
2010-05-11 10:12:49 +02:00
|
|
|
/// Enters the ClassOrNamespace binding associated with the given \a symbol.
|
|
|
|
|
ClassOrNamespace *enterClassOrNamespaceBinding(Symbol *symbol);
|
|
|
|
|
|
|
|
|
|
/// Enters a ClassOrNamespace binding for the given \a symbol in the global
|
|
|
|
|
/// namespace binding.
|
|
|
|
|
ClassOrNamespace *enterGlobalClassOrNamespace(Symbol *symbol);
|
|
|
|
|
|
|
|
|
|
/// Creates bindings for the given \a document.
|
|
|
|
|
void process(Document::Ptr document);
|
|
|
|
|
|
|
|
|
|
/// Creates bindings for the symbols reachable from the \a root symbol.
|
|
|
|
|
void process(Symbol *root);
|
2010-05-05 10:28:32 +02:00
|
|
|
|
2010-08-11 14:24:28 +02:00
|
|
|
virtual bool visit(Template *templ);
|
2010-05-05 10:28:32 +02:00
|
|
|
virtual bool visit(Namespace *ns);
|
|
|
|
|
virtual bool visit(Class *klass);
|
|
|
|
|
virtual bool visit(ForwardClassDeclaration *klass);
|
|
|
|
|
virtual bool visit(Enum *e);
|
|
|
|
|
virtual bool visit(Declaration *decl);
|
|
|
|
|
virtual bool visit(Function *);
|
|
|
|
|
virtual bool visit(BaseClass *b);
|
|
|
|
|
virtual bool visit(UsingNamespaceDirective *u);
|
2010-05-27 16:33:18 +02:00
|
|
|
virtual bool visit(UsingDeclaration *u);
|
2010-05-05 10:28:32 +02:00
|
|
|
virtual bool visit(NamespaceAlias *a);
|
|
|
|
|
|
|
|
|
|
virtual bool visit(ObjCClass *klass);
|
|
|
|
|
virtual bool visit(ObjCBaseClass *b);
|
|
|
|
|
virtual bool visit(ObjCForwardClassDeclaration *klass);
|
|
|
|
|
virtual bool visit(ObjCProtocol *proto);
|
|
|
|
|
virtual bool visit(ObjCBaseProtocol *b);
|
|
|
|
|
virtual bool visit(ObjCForwardProtocolDeclaration *proto);
|
|
|
|
|
virtual bool visit(ObjCMethod *);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Snapshot _snapshot;
|
2010-06-04 17:58:29 +02:00
|
|
|
QSharedPointer<Control> _control;
|
2010-05-05 10:28:32 +02:00
|
|
|
QSet<Namespace *> _processed;
|
|
|
|
|
QList<ClassOrNamespace *> _entities;
|
|
|
|
|
ClassOrNamespace *_globalNamespace;
|
|
|
|
|
ClassOrNamespace *_currentClassOrNamespace;
|
2012-10-08 13:23:21 +02:00
|
|
|
bool _expandTemplates;
|
2010-05-05 10:28:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class CPLUSPLUS_EXPORT LookupContext
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
LookupContext();
|
|
|
|
|
|
|
|
|
|
LookupContext(Document::Ptr thisDocument,
|
|
|
|
|
const Snapshot &snapshot);
|
|
|
|
|
|
|
|
|
|
LookupContext(Document::Ptr expressionDocument,
|
|
|
|
|
Document::Ptr thisDocument,
|
|
|
|
|
const Snapshot &snapshot);
|
|
|
|
|
|
|
|
|
|
LookupContext(const LookupContext &other);
|
|
|
|
|
LookupContext &operator = (const LookupContext &other);
|
|
|
|
|
|
|
|
|
|
Document::Ptr expressionDocument() const;
|
|
|
|
|
Document::Ptr thisDocument() const;
|
|
|
|
|
Document::Ptr document(const QString &fileName) const;
|
|
|
|
|
Snapshot snapshot() const;
|
|
|
|
|
|
|
|
|
|
ClassOrNamespace *globalNamespace() const;
|
|
|
|
|
|
2010-07-16 11:03:39 +02:00
|
|
|
QList<LookupItem> lookup(const Name *name, Scope *scope) const;
|
2012-12-07 14:31:32 +01:00
|
|
|
ClassOrNamespace *lookupType(const Name *name, Scope *scope,
|
|
|
|
|
ClassOrNamespace* enclosingTemplateInstantiation = 0) const;
|
|
|
|
|
ClassOrNamespace *lookupType(Symbol *symbol,
|
|
|
|
|
ClassOrNamespace* enclosingTemplateInstantiation = 0) const;
|
2010-07-08 16:40:46 +02:00
|
|
|
ClassOrNamespace *lookupParent(Symbol *symbol) const;
|
2010-05-05 10:28:32 +02:00
|
|
|
|
|
|
|
|
/// \internal
|
|
|
|
|
QSharedPointer<CreateBindings> bindings() const;
|
|
|
|
|
|
|
|
|
|
/// \internal
|
|
|
|
|
void setBindings(QSharedPointer<CreateBindings> bindings);
|
|
|
|
|
|
2010-06-04 17:58:29 +02:00
|
|
|
QSharedPointer<Control> control() const; // ### deprecate
|
2010-05-05 10:28:32 +02:00
|
|
|
|
2010-05-11 12:47:20 +02:00
|
|
|
static QList<const Name *> fullyQualifiedName(Symbol *symbol);
|
2010-07-12 15:09:36 +02:00
|
|
|
static QList<const Name *> path(Symbol *symbol);
|
2010-05-11 12:47:20 +02:00
|
|
|
|
2011-10-31 12:09:27 +01:00
|
|
|
static const Name *minimalName(Symbol *symbol, ClassOrNamespace *target, Control *control);
|
2010-07-08 16:40:46 +02:00
|
|
|
|
2012-10-08 13:23:21 +02:00
|
|
|
void setExpandTemplates(bool expandTemplates)
|
2013-01-19 13:17:34 +01:00
|
|
|
{
|
|
|
|
|
if (_bindings)
|
|
|
|
|
_bindings->setExpandTemplates(expandTemplates);
|
|
|
|
|
m_expandTemplates = expandTemplates;
|
|
|
|
|
}
|
2012-10-08 13:23:21 +02:00
|
|
|
|
2010-05-05 10:28:32 +02:00
|
|
|
private:
|
|
|
|
|
// The current expression.
|
|
|
|
|
Document::Ptr _expressionDocument;
|
|
|
|
|
|
|
|
|
|
// The current document.
|
|
|
|
|
Document::Ptr _thisDocument;
|
|
|
|
|
|
|
|
|
|
// All documents.
|
|
|
|
|
Snapshot _snapshot;
|
|
|
|
|
|
|
|
|
|
// Bindings
|
|
|
|
|
mutable QSharedPointer<CreateBindings> _bindings;
|
2010-06-04 17:58:29 +02:00
|
|
|
|
|
|
|
|
QSharedPointer<Control> _control;
|
2012-10-08 13:23:21 +02:00
|
|
|
|
|
|
|
|
bool m_expandTemplates;
|
2010-05-05 10:28:32 +02:00
|
|
|
};
|
|
|
|
|
|
2012-09-03 13:38:20 +02:00
|
|
|
bool CPLUSPLUS_EXPORT compareFullyQualifiedName(const QList<const Name *> &path,
|
|
|
|
|
const QList<const Name *> &other);
|
|
|
|
|
|
|
|
|
|
|
2011-02-04 09:52:39 +01:00
|
|
|
} // namespace CPlusPlus
|
2010-05-05 10:28:32 +02:00
|
|
|
|
|
|
|
|
#endif // CPLUSPLUS_LOOKUPCONTEXT_H
|