/usr/include/root/TMakeProject.h is in libroot-io-dev 5.34.14-1build1.
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 | // @(#)root/io:$Id$
// Author: Rene Brun 12/10/2000
/*************************************************************************
* Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TMakeProject
#define ROOT_TMakeProject
//////////////////////////////////////////////////////////////////////////
// //
// TMakeProject //
// //
// Helper class implementing the TFile::MakeProject. //
// //
//////////////////////////////////////////////////////////////////////////
#include <stdio.h>
#ifndef ROOT_TOBJECT_H
#include "TString.h"
#endif
class TList;
class TVirtualStreamerInfo;
class TStreamerElement;
class TMakeProject
{
private:
static void GenerateMissingStreamerInfo(TList *extrainfos, const char *clname, Bool_t iscope);
public:
static void AddUniqueStatement(FILE *fp, const char *statement, char *inclist);
static void AddInclude(FILE *fp, const char *header, Bool_t system, char *inclist);
static void ChopFileName(TString &name, Int_t limit);
static TString GetHeaderName(const char *name, const TList *extrainfos, Bool_t includeNested = kFALSE);
static UInt_t GenerateClassPrefix(FILE *fp, const char *clname, Bool_t top, TString &protoname, UInt_t *numberOfClasses, Int_t implementEmptyClass = kFALSE, Bool_t needGenericTemplate = kFALSE);
static void GenerateMissingStreamerInfos(TList *extrainfos, TStreamerElement *element);
static void GenerateMissingStreamerInfos(TList *extrainfos, const char *clname);
static UInt_t GenerateForwardDeclaration(FILE *fp, const char *clname, char *inclist, Bool_t implementEmptyClass, Bool_t needGenericTemplate, const TList *extrainfos);
static UInt_t GenerateIncludeForTemplate(FILE *fp, const char *clname, char *inclist, Bool_t forward, const TList *extrainfos);
static TString UpdateAssociativeToVector(const char *name);
static void GeneratePostDeclaration(FILE *fp, const TVirtualStreamerInfo *info, char *inclist);
};
#endif // ROOT_TMakeProject
|