LTKCPP-- LLRP Toolkit C Plus Plus Library
ltkcpp_encdec.cpp
1 
2 /*
3  *****************************************************************************
4  * *
5  * IMPINJ CONFIDENTIAL AND PROPRIETARY *
6  * *
7  * This source code is the sole property of Impinj, Inc. Reproduction or *
8  * utilization of this source code in whole or in part is forbidden without *
9  * the prior written consent of Impinj, Inc. *
10  * *
11  * (c) Copyright Impinj, Inc. 2007,2008. All rights reserved. *
12  * *
13  *****************************************************************************/
14 
15 
16 #include "ltkcpp_platform.h"
17 #include "ltkcpp_base.h"
18 
19 
20 namespace LLRP
21 {
22 
23 CDecoder::CDecoder (void)
24 {
25  m_pRegistry = NULL;
26 }
27 
28 CDecoder::CDecoder (
29  const CTypeRegistry * pTypeRegistry)
30 {
31  m_pRegistry = pTypeRegistry;
32 }
33 
34 CDecoder::~CDecoder (void)
35 {
36 }
37 
39 {
40 }
41 
43 {
44 }
45 
46 CDecoderStream::~CDecoderStream (void)
47 {
48 }
49 
50 CEncoderStream::~CEncoderStream (void)
51 {
52 }
53 
54 }; /* namespace LLRP */
Based type descriptions for the LTKCPP library.
A collection of pointers to CTypeDescriptors.
Definition: ltkcpp_base.h:885
Based types for the LKTCPP library.
virtual ~CEncoder(void)=0
destructor
CEncoder(void)
Constructor.