/usr/include/LWH/ManagedObject.h is in librivet-dev 1.8.3-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 | // -*- C++ -*-
#ifndef LWH_ManagedObject_H
#define LWH_ManagedObject_H
//
// This is the declaration of the ManagedObject class.
//
#include "AIManagedObject.h"
#include <iostream>
#ifdef HAVE_ROOT
#include "TFile.h"
#endif
namespace LWH {
using namespace AIDA;
/**
* The creator of trees.
*/
class ManagedObject: public IManagedObject {
public:
/// Destructor.
virtual ~ManagedObject() {}
/**
* Encode sensitive characters as XML entities.
*/
std::string encodeForXML(const std::string& in) {
std::string out = in;
typedef std::pair<std::string, std::string> CharsToEntities;
std::vector<CharsToEntities> cs2es;
// Ampersand has to be first!
cs2es.push_back(std::make_pair("&", "&"));
cs2es.push_back(std::make_pair("\"", """));
cs2es.push_back(std::make_pair("<", "<"));
cs2es.push_back(std::make_pair(">", ">"));
for (std::vector<CharsToEntities>::const_iterator c2e = cs2es.begin();
c2e != cs2es.end(); ++c2e) {
size_t pos = 0;
while (true) {
if (pos != 0) ++pos;
pos = out.find(c2e->first, pos);
if (pos != std::string::npos) {
out.replace(pos, 1, c2e->second);
} else {
break;
}
}
}
return out;
}
/**
* Write out the object to the given stream in XML format.
*/
virtual bool writeXML(std::ostream & os,
std::string path, std::string name) = 0;
/**
* Write out the object to the given stream in simple table format.
*/
virtual bool writeFLAT(std::ostream & os,
std::string path, std::string name) = 0;
#ifdef HAVE_ROOT
/**
* Write out the object to the given TFile in Root format.
*/
virtual bool writeROOT(TFile* file,
std::string path, std::string name) = 0;
#endif
};
}
#endif /* LWH_ManagedObject_H */
|