/usr/include/OpenJade/GroveBuilder.h is in libostyle-dev 1.4devel1-21.3+b1.
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 | // Copyright (c) 1996 James Clark
// See the file COPYING for copying permission.
#ifndef GroveBuilder_INCLUDED
#define GroveBuilder_INCLUDED 1
#include <OpenSP/Boolean.h>
#include "Node.h"
#ifdef SP_USE_DLL
#ifdef BUILD_LIBSPGROVE
#define SPGROVE_API SP_DLLEXPORT
#else
#define SPGROVE_API SP_DLLIMPORT
#endif
#else /* not SP_USE_DLL */
#define SPGROVE_API /* as nothing */
#endif /* not SP_USE_DLL */
#ifdef SP_NAMESPACE
namespace SP_NAMESPACE {
#endif
class Messenger;
class ErrorCountEventHandler;
class MessageFormatter;
class SPGROVE_API GroveBuilder {
public:
static bool setBlocking(bool);
static ErrorCountEventHandler *make(unsigned index,
Messenger *,
MessageFormatter *,
bool validateOnly,
GROVE_NAMESPACE_SCOPE NodePtr &root);
static ErrorCountEventHandler *make(unsigned index,
Messenger *,
MessageFormatter *,
bool validateOnly,
const ConstPtr<Sd> &sd,
const ConstPtr<Syntax> &prologSyntax,
const ConstPtr<Syntax> &instanceSyntax,
GROVE_NAMESPACE_SCOPE NodePtr &root);
private:
GroveBuilder();
};
#ifdef SP_NAMESPACE
}
#endif
#endif /* not GroveBuilder_INCLUDED */
|