MrSID Decode SDK for Raster Reference Manual  9.5.4.4709
lti_metadataReader.h
Go to the documentation of this file.
00001 /* $Id$ */
00002 /* //////////////////////////////////////////////////////////////////////////
00003 //                                                                         //
00004 // This code is Copyright (c) 2004 LizardTech, Inc, 1008 Western Avenue,   //
00005 // Suite 200, Seattle, WA 98104.  Unauthorized use or distribution         //
00006 // prohibited.  Access to and use of this code is permitted only under     //
00007 // license from LizardTech, Inc.  Portions of the code are protected by    //
00008 // US and foreign patents and other filings. All Rights Reserved.          //
00009 //                                                                         //
00011 /* PUBLIC */
00012 
00013 #ifndef LTIMETADATAREADER_H
00014 #define LTIMETADATAREADER_H
00015 
00016 // lt_lib_base
00017 #include "lt_base.h"
00018 
00019 LT_BEGIN_NAMESPACE(LizardTech)
00020 
00021 #if defined(LT_COMPILER_MS)
00022    #pragma warning(push,4)
00023 #endif
00024 
00025 
00026 class LTIMetadataDatabase;
00027 
00038 class LTIMetadataReader
00039 {
00040 public:
00044    virtual ~LTIMetadataReader();
00045 
00055    virtual LT_STATUS read() = 0;
00056 
00057 protected:
00066    LTIMetadataReader(LTIMetadataDatabase& database);
00067 
00074    LTIMetadataDatabase& m_database;
00075 
00076 private:
00077    // nope
00078    LTIMetadataReader(const LTIMetadataReader&);
00079    LTIMetadataReader& operator=(const LTIMetadataReader&);
00080 };
00081 
00082 
00083 LT_END_NAMESPACE(LizardTech)
00084 
00085 #if defined(LT_COMPILER_MS)
00086    #pragma warning(pop)
00087 #endif
00088 
00089 #endif // LTIMETADATAREADER_H