llvm-for-llvmta/tools/clang/test/Modules/Inputs/PR27739/DataInputHandler.h

20 lines
341 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
template < typename > struct vector {};
#include <map>
#include "Types.h"
struct TString {
TString (char *);
};
struct TreeInfo {};
class DataInputHandler {
void AddTree ();
void SignalTreeInfo () {
fInputTrees[(char*)""];
}
map <TString, vector <TreeInfo> >fInputTrees;
map <string, bool> fExplicitTrainTest;
};