/usr/include/ThePEG/Interface/Reference.xh is in libthepeg-dev 1.8.0-1.1.
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 | // -*- C++ -*-
//
// Reference.xh is a part of ThePEG - Toolkit for HEP Event Generation
// Copyright (C) 1999-2011 Leif Lonnblad
//
// ThePEG is licenced under version 2 of the GPL, see COPYING for details.
// Please respect the MCnet academic guidelines, see GUIDELINES for details.
//
#ifndef ThePEG_Reference_XH
#define ThePEG_Reference_XH
//
// This is the declarations of the exception classes used by the
// Reference class.
//
#include "InterfaceBase.xh"
namespace ThePEG {
/** @cond EXCEPTIONCLASSES */
/** Exception class used by Reference if trying to set a pointer of
* the wrong type. */
struct RefExSetRefClass: public InterfaceException {
/** Standard constructor. */
RefExSetRefClass(const RefInterfaceBase & i, const InterfacedBase & o,
cIBPtr r);
};
/** Exception class used by Referenceif an unknown error occurs. */
struct RefExSetUnknown: public InterfaceException {
/** Standard constructor. */
RefExSetUnknown(const InterfaceBase & i, const InterfacedBase & o,
cIBPtr r);
};
/** Exception class used by Reference if an unknown error occurs. */
struct RefExGetUnknown: public InterfaceException {
/** Standard constructor. */
RefExGetUnknown(const InterfaceBase & i, const InterfacedBase & o);
};
/** Exception class used by Reference of a specified object was not
* found. */
struct RefExSetNoobj: public InterfaceException {
/** Standard constructor. */
RefExSetNoobj(const InterfaceBase & i, const InterfacedBase & o, string);
};
/** Exception class used by Reference for issuing warnings. */
struct RefExSetMessage: public InterfaceException {
/** Standard constructor. */
RefExSetMessage(string ref, const InterfacedBase & o,
const InterfacedBase & o2, string);
};
/** @endcond */
}
#endif /* ThePEG_Reference_XH */
|