Statistics
| Revision:

svn-gvsig-desktop / tags / v1_0_2_Build_904 / libraries / libjni-ecw / include / NCSJPCQCDMarker.h @ 43469

History | View | Annotate | Download (2.1 KB)

1 3538 nacho
/********************************************************
2
** Copyright 2002 Earth Resource Mapping Ltd.
3
** This document contains proprietary source code of
4
** Earth Resource Mapping Ltd, and can only be used under
5
** one of the three licenses as described in the
6
** license.txt file supplied with this distribution.
7
** See separate license.txt file for license details
8
** and conditions.
9
**
10
** This software is covered by US patent #6,442,298,
11
** #6,102,897 and #6,633,688.  Rights to use these patents
12
** is included in the license agreements.
13
**
14
** FILE:     $Archive: /NCS/Source/include/NCSJPCQCDMarker.h $
15
** CREATED:  12/12/2002 3:27:34 PM
16
** AUTHOR:   Simon Cope
17
** PURPOSE:  CNCSJPCQCDMarker class header
18
** EDITS:    [xx] ddMmmyy NAME COMMENTS
19
 *******************************************************/
20
21
#ifndef NCSJPCQCDMARKER_H
22
#define NCSJPCQCDMARKER_H
23
24
#include "NCSJPCMarker.h"
25
#include "NCSJPCQuantizationParameter.h"
26
        /**
27
         * CNCSJPCQCDMarker class - the JPC QCD marker.
28
         *
29
         * @author       Simon Cope
30
         * @version      $Revision$ $Author$ $Date$
31
         */
32
class NCSJPC_EXPORT_ALL CNCSJPCQCDMarker: public CNCSJPCMarker, public CNCSJPCQuantizationParameter {
33
public:
34
                /** Default constructor, initialises members */
35
        CNCSJPCQCDMarker();
36
                /** Virtual destructor */
37
        virtual ~CNCSJPCQCDMarker();
38
39
                /**
40
                 * Parse the marker from the JPC codestream.
41
                 * @param                JPC                        CNCSJPC to use to parse file.
42
                 * @param                Stream                IOStream to use to parse file.
43
                 * @return      CNCSError        NCS_SUCCESS, or Error code on failure.
44
                 */
45
        virtual CNCSError Parse(class CNCSJPC &JPC, CNCSJPCIOStream &Stream);
46
                /**
47
                 * UnParse the marker to the JPC codestream.
48
                 * @param                Stream                IOStream to use to parse file.
49
                 * @param                JPC                        CNCSJPC to use to parse file.
50
                 * @return      CNCSError        NCS_SUCCESS, or Error code on failure.
51
                 */
52
        virtual CNCSError UnParse(class CNCSJPC &JPC, CNCSJPCIOStream &Stream);
53
54
                /**
55
                 * Assignment operator
56
                 * @param                src                QCC Marker.
57
                 * @return      CNCSJPCQCDMarker        Updated QCDMarker.
58
                 */
59
        class CNCSJPCQCDMarker& operator=( const class CNCSJPCQCCMarker& src );
60
};
61
62
63
#endif // !NCSJPCQCDMARKER_H