12 #ifndef ROOT_TSchemaHelper
13 #define ROOT_TSchemaHelper
23 TSchemaHelper(): fTarget(), fSourceClass(),
24 fSource(), fCode(), fVersion(), fChecksum(),
25 fInclude(), fEmbed(true), fFunctionPtr( 0 ),
28 std::string fSourceClass;
32 std::string fChecksum;
36 std::string fAttributes;
38 TSchemaHelper(
const TSchemaHelper &tsh) :
39 fTarget(tsh.fTarget), fSourceClass(tsh.fSourceClass),
40 fSource(tsh.fSource), fCode(tsh.fCode), fVersion(tsh.fVersion),fChecksum(tsh.fChecksum),
41 fInclude(tsh.fInclude), fEmbed(tsh.fEmbed), fFunctionPtr(tsh.fFunctionPtr),
42 fAttributes(tsh.fAttributes) {}
44 TSchemaHelper& operator=(
const TSchemaHelper &) {
return *
this;}
49 #endif // ROOT_TSchemaHelper