Sign in
apache
/
geode
/
refs/heads/native-client-software-grant
/
.
/
geode-client-native
/
src
/
cppcache
/
DataInput.cpp
blob: 24dfce07520e196c65439ae62d5fb16e0dee681e [
file
] [
log
] [
blame
]
#include
"DataInput.hpp"
#include
"impl/SerializationRegistry.hpp"
namespace
gemfire
{
void
DataInput
::
readObjectInternal
(
SerializablePtr
&
ptr
,
int8_t
typeId
)
{
ptr
=
SerializationRegistry
::
deserialize
(
*
this
,
typeId
);
}
}