FirteX-高性能全文索引和检索平台API Documentation |
00001 // 00002 // Copyright(C) 2005--2006 Institute of Computing Tech, Chinese Academy of Sciences. 00003 // All rights reserved. 00004 // This file is part of FirteX (www.firtex.org) 00005 // 00006 // Use of the FirteX is subject to the terms of the software license set forth in 00007 // the LICENSE file included with this software, and also available at 00008 // http://www.firtex.org/license.html 00009 // 00010 // Author : 郭瑞杰(GuoRuijie) 00011 // Email : ruijieguo@software.ict.ac.cn,ruijieguo@gmail.com 00012 // Created : 2006/5/15 00013 // 00014 #ifndef __COMDOCUMENT_H 00015 #define __COMDOCUMENT_H 00016 00017 #if _MSC_VER > 1000 00018 #pragma once 00019 #endif // _MSC_VER > 1000 00020 00021 #include "FirteXCOM.h" 00022 #include "ComObject.h" 00023 #include "../document/Document.h" 00024 00025 using namespace firtex::document; 00026 00027 namespace firtex 00028 { 00029 namespace plugin 00030 { 00031 class CComDocument : public CComObject 00032 { 00033 public: 00034 CComDocument(CDocument* pDoc); 00035 virtual ~CComDocument(void); 00036 public: 00037 static IDocument* wrap(CDocument* pDoc); 00038 static CDocument* unwrap(IDocument* pInterface); 00039 public: 00040 BEGIN_INTERFACE_PART(Document, IDocument) 00041 FX_STDMETHOD(setSchema)(/* [in] */IDocumentSchema* pSchema); 00042 FX_STDMETHOD(addField)(/* [in] */firtex::plugin::fieldid_t id, 00043 /* [in] */firtex::plugin::INDEXDATAVAR* value); 00044 END_INTERFACE_PART(Document) 00045 00046 protected: 00047 CDocument* m_pDoc; 00048 00049 }; 00050 } 00051 } 00052 00053 #endif
http://www.firtex.org http://www.sourceforge.net/projects/firtex