/usr/include/ThePEG/Interface/Deleted.h 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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | // -*- C++ -*-
//
// Deleted.h 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_Deleted_H
#define ThePEG_Deleted_H
// This is the declaration of the Deleted and DeletedBase classes.
#include "ThePEG/Config/ThePEG.h"
#include "InterfaceBase.h"
namespace ThePEG {
/**
* The DeletedBase and its templated Deleted sub-class defines an
* interface to a class derived from the InterfacedBase. It should be
* used when an interface is removed to provide a user-friendly
* message indicating why it was removed and possibly which interface
* should be used instead.
*
* For each deleted interface to be defined for a class
* <code>T</code>, exactly one static object of the Deleted<T> must be
* created and initialized as follows:
*
* <code>Deleted<T> delint(name, description);</code>
*
* Where <code>name</code> is an identifier <code>std::string</code> which
* should only contain letters [a-zA-z0-9_] and <code>description</code> is
* an arbitrary <code>std::string</code>
*
* The <code>Deleted</code> class, as all other InterfaceBase classes
* are mainly used in the BaseRepository class.
*
*
* @see InterfacedBase
* @see InterfaceBase
* @see BaseRepository
*
*/
class DeletedBase: public InterfaceBase {
public:
/**
* Standard constructor.
*
* @param newName the name of the interface, may only contain
* letters [a-zA-z0-9_].
*
* @param newDescription a brief description of the interface.
*
* @param newClassName the name of the corresponding class.
*
* @param newTypeInfo the type_info object of the corresponding
* class.
*
*/
DeletedBase(string newName, string newDescription, string newClassName,
const type_info & newTypeInfo)
: InterfaceBase(newName, newDescription, newClassName,
newTypeInfo, true, false) {
rank(-1.0e10);
}
/**
* The general interface method overriding the one in
* InterfaceBase. For this class, an exception will be thrown with a
* message given by the description string provided in the
* constructor.
*/
virtual string
exec(InterfacedBase &ib, string action, string arguments) const
;
/**
* Return a string describing the type of interface to be included
* in the Doxygen documentation.
*/
virtual string doxygenType() const;
/**
* Return a code for the type of this interface.
*/
virtual string type() const;
};
/**
* The DeletedBase and its templated Deleted sub-class defines an
* interface to a class derived from the InterfacedBase. It should be
* used when an interface is removed to provide a user-friendly
* message indicating why it was removed and possibly which interface
* should be used instead.
*
* For each deleted interface to be defined for a class
* <code>T</code>, exactly one static object of the Deleted<T> must be
* created and initialized as follows:
*
* <code>Deleted<T> delint(name, description);</code>
*
* Where <code>name</code> is an identifier <code>std::string</code> which
* should only contain letters [a-zA-z0-9_] and <code>description</code> is
* an arbitrary <code>std::string</code>
*
* The <code>Deleted</code> class, as all other InterfaceBase classes
* are mainly used in the BaseRepository class.
*
*
* @see InterfacedBase
* @see InterfaceBase
* @see BaseRepository
*
*/
template <class T>
class Deleted: public DeletedBase {
public:
/**
* Standard constructor.
*
* @param newName the name of the interface, may only contain
* letters [a-zA-z0-9_].
*
* @param newDescription a brief description of the interface.
*
*/
Deleted(string newName, string newDescription)
: DeletedBase(newName, newDescription,
ClassTraits<T>::className(), typeid(T)) {}
};
}
#endif /* ThePEG_Deleted_H */
|