/usr/include/tercpp/xmlStructure.h is in libtercpp-dev 0.6.2+svn46-1.1+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 | /*
* Generic hashmap manipulation functions
*/
#ifndef __XMLSTRUCTURE_H__
#define __XMLSTRUCTURE_H__
#include "sgmlDocument.h"
#include "documentStructure.h"
#include "stdio.h"
#include <iostream>
#include <string>
#include "tinyxml.h"
using namespace std;
namespace TERCpp
{
class xmlStructure
{
private:
unsigned int NUM_INDENTS_PER_SPACE;
// void dump_attribs_to_SGMLDocuments ( SGMLDocument* arg1, const TiXmlElement* arg2 );
void dump_attribs_to_SGMLDocuments ( SGMLDocument* sgmlDoc, TiXmlElement* pElement, unsigned int indent );
public:
xmlStructure();
const char * getIndent ( unsigned int numIndents );
const char * getIndentAlt ( unsigned int numIndents );
int dump_attribs_to_stdout ( TiXmlElement* pElement, unsigned int indent );
void dump_to_stdout ( TiXmlNode* pParent, unsigned int indent );
void dump_to_stdout ( const char* pFilename );
void copy_to_SGMLDocument ( SGMLDocument* sgmlDoc , TiXmlNode* pParent, unsigned int indent );
SGMLDocument dump_to_SGMLDocument ( string FileName );
param xmlParams;
};
}
#endif
|