Skip to content
Snippets Groups Projects
Commit 2d4fe90d authored by Rene Brun's avatar Rene Brun
Browse files

Replace references to TBufferFile::kCannotHandleMemberWiseStreaming by

TBuffer::kCannotHandleMemberWiseStreaming.


git-svn-id: http://root.cern.ch/svn/root/trunk@17546 27541ba8-7e3a-0410-8455-c3a389f83636
parent 292b8f05
No related branches found
No related tags found
No related merge requests found
// @(#)root/xml:$Name: $:$Id: TKeyXML.cxx,v 1.9 2007/01/20 19:29:35 brun Exp $ // @(#)root/xml:$Name: $:$Id: TKeyXML.cxx,v 1.10 2007/01/22 05:58:29 brun Exp $
// Author: Sergey Linev, Rene Brun 10.05.2004 // Author: Sergey Linev, Rene Brun 10.05.2004
/************************************************************************* /*************************************************************************
...@@ -179,7 +179,7 @@ void TKeyXML::StoreObject(const void* obj, const TClass* cl) ...@@ -179,7 +179,7 @@ void TKeyXML::StoreObject(const void* obj, const TClass* cl)
TBufferXML buffer(TBuffer::kWrite, f); TBufferXML buffer(TBuffer::kWrite, f);
if (f->GetIOVersion()==1) if (f->GetIOVersion()==1)
buffer.SetBit(TBufferFile::kCannotHandleMemberWiseStreaming, kFALSE); buffer.SetBit(TBuffer::kCannotHandleMemberWiseStreaming, kFALSE);
XMLNodePointer_t node = buffer.XmlWriteAny(obj, cl); XMLNodePointer_t node = buffer.XmlWriteAny(obj, cl);
...@@ -289,7 +289,7 @@ void* TKeyXML::XmlReadAny(void* obj, const TClass* expectedClass) ...@@ -289,7 +289,7 @@ void* TKeyXML::XmlReadAny(void* obj, const TClass* expectedClass)
TBufferXML buffer(TBuffer::kRead, f); TBufferXML buffer(TBuffer::kRead, f);
if (f->GetIOVersion()==1) if (f->GetIOVersion()==1)
buffer.SetBit(TBufferFile::kCannotHandleMemberWiseStreaming, kFALSE); buffer.SetBit(TBuffer::kCannotHandleMemberWiseStreaming, kFALSE);
XMLNodePointer_t blocknode = xml->GetChild(fKeyNode); XMLNodePointer_t blocknode = xml->GetChild(fKeyNode);
xml->SkipEmpty(blocknode); xml->SkipEmpty(blocknode);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment