/usr/include/OpenSP/LinkProcess.h is in libosp-dev 1.5.2-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | // Copyright (c) 1994 James Clark
// See the file COPYING for copying permission.
#ifndef LinkProcess_INCLUDED
#define LinkProcess_INCLUDED 1
#ifdef __GNUG__
#pragma interface
#endif
#include "Lpd.h"
#include "IList.h"
#include "Link.h"
#include "Vector.h"
#include "Vector.h"
#include "Ptr.h"
#ifdef SP_NAMESPACE
namespace SP_NAMESPACE {
#endif
class Messenger;
struct SP_API LinkProcessOpenElement : public Link {
LinkProcessOpenElement(const LinkSet *current, const SourceLinkRule &);
LinkProcessOpenElement(const LinkSet *current);
const LinkSet *current;
const LinkSet *restore;
const LinkSet *post;
Boolean postRestore;
};
class SP_API LinkProcess {
public:
LinkProcess();
void init(const ConstPtr<ComplexLpd> &lpd);
Boolean startElement(const ElementType *,
const AttributeList &attributes,
const Location &location,
Messenger &,
const AttributeList *&linkAttributes,
const ResultElementSpec *&resultElementSpec);
void endElement();
void uselink(const LinkSet *linkSet,
Boolean restore,
const Lpd *);
virtual Boolean selectLinkRule(const Vector<const AttributeList *> &,
const Location &location,
size_t &selected);
size_t nImpliedLinkRules() const;
const ResultElementSpec &impliedLinkRule(size_t) const;
const StringC &name() const;
Boolean isExplicit() const;
void clear();
void swap(LinkProcess &);
private:
LinkProcess(const LinkProcess &); // undefined
void operator=(const LinkProcess &); // undefined
IList<LinkProcessOpenElement> open_;
ConstPtr<ComplexLpd> lpd_;
Vector<ConstPtr<Lpd> > activeLpds_;
Vector<const AttributeList *> linkAttributes_;
};
inline
const StringC &LinkProcess::name() const
{
return lpd_->name();
}
inline
Boolean LinkProcess::isExplicit() const
{
return lpd_->type() == Lpd::explicitLink;
}
#ifdef SP_NAMESPACE
}
#endif
#endif /* not LinkProcess_INCLUDED */
|