ghmm_convertxmltoc.h

来自「一个通用的隐性马尔可夫C代码库 开发环境:C语言 简要说明:这是一个通用的」· C头文件 代码 · 共 90 行

H
90
字号
/* * * created: 26 Feb 2002 by Wasinee Rungsarityotin * authors: Wasinee Rungsarityotin (rungsari@molgen.mpg.de) * file   : $Source: /cvsroot/ghmm/ghmm/ghmm++/GHMM_convertXMLtoC.h,v $ * $Id: GHMM_convertXMLtoC.h,v 1.2 2003/04/24 17:24:04 wasinee Exp $ * revision date   : $Date: 2003/04/24 17:24:04 $  _Copyright (C) 1998-2001, ZAIK/ZPR, Universit鋞 zu K鰈n  _  _This program is free software; you can redistribute it and/or modify  _it under the terms of the GNU General Public License as published by  _the Free Software Foundation; either version 2 of the License, or  _(at your option) any later version.  _  _This program is distributed in the hope that it will be useful,  _but WITHOUT ANY WARRANTY; without even the implied warranty of  _MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  _GNU General Public License for more details.  _  _You should have received a copy of the GNU General Public License  _along with this program; if not, write to the Free Software  _Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  _  *//* This header can be read by both C and C++ compilers */#ifndef _GHMM_XML_H#define _GHMM_XML_H 1#include <stdlib.h> #ifdef __cplusplusextern "C" {typedef enum {  DISCRETE,  CONTINUOUS} model_enum;#include <ghmm/model.h>#include <ghmm/sdmodel.h>struct model_wrapper {  model_enum model_id;  void * model_pt;};typedef struct model_wrapper model_t;} /* extern C */#else typedef enum {  DISCRETE,  CONTINUOUS} model_enum;#include <ghmm/model.h>struct model_wrapper {  model_enum model_id;  void * model_pt;};typedef struct model_wrapper model_t;#endif/* * Prevent "name mangled" by C++ compiler * Declare a wrapper function to call C++ methods  */#ifdef __cplusplusextern "C" {#endif #if defined(__STDC__) || defined(__cplusplus)  /* ANSI C prototypes */  extern model_t* graphmldoc_cwrapper(char *filename);#else  /* K&R style */  extern model_t* graphmldoc_cwrapper(char *filename);#endif #ifdef __cplusplus}#endif #endif /*  end of header file */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?