LTKCPP-- LLRP Toolkit C Plus Plus Library
ltkcpp_encdec.cpp
00001 
00002 /*
00003  *****************************************************************************
00004  *                                                                           *
00005  *                 IMPINJ CONFIDENTIAL AND PROPRIETARY                       *
00006  *                                                                           *
00007  * This source code is the sole property of Impinj, Inc.  Reproduction or    *
00008  * utilization of this source code in whole or in part is forbidden without  *
00009  * the prior written consent of Impinj, Inc.                                 *
00010  *                                                                           *
00011  * (c) Copyright Impinj, Inc. 2007,2008. All rights reserved.                *
00012  *                                                                           *
00013  *****************************************************************************/
00014 
00015 
00016 #include "ltkcpp_platform.h"
00017 #include "ltkcpp_base.h"
00018 
00019 
00020 namespace LLRP
00021 {
00022 
00023 CDecoder::CDecoder (void)
00024 {
00025     m_pRegistry    = NULL;
00026 }
00027 
00028 CDecoder::CDecoder (
00029   const CTypeRegistry *         pTypeRegistry)
00030 {
00031     m_pRegistry = pTypeRegistry;
00032 }
00033 
00034 CDecoder::~CDecoder (void)
00035 {
00036 }
00037 
00038 CEncoder::CEncoder (void)
00039 {
00040 }
00041 
00042 CEncoder::~CEncoder (void)
00043 {
00044 }
00045 
00046 CDecoderStream::~CDecoderStream (void)
00047 {
00048 }
00049 
00050 CEncoderStream::~CEncoderStream (void)
00051 {
00052 }
00053 
00054 }; /* namespace LLRP */