idlist.h

来自「another source code for reduced basis」· C头文件 代码 · 共 31 行

H
31
字号
/*A fast and simple stretch-minimizing mesh parameterization C++ codeCopyright:(c) Shin Yoshizawa, 2004E-mail: shin.yoshizawa@mpi-sb.mpg.deURL: http://www.mpi-sb.mpg.de/~shinAffiliation: Max-Planck-Institut fuer Informatik: Computer Graphics Group  Stuhlsatzenhausweg 85, 66123 Saarbruecken, Germany Phone +49 681 9325-408 Fax +49 681 9325-499  All right is reserved by Shin Yoshizawa.This C++ sources are allowed for only primary user of research and educational purposes. Don't use secondary: copy, distribution, diversion, business purpose, and etc..  */#define next(p) p->next#define back(p) p->backclass IDList{ public:  int ID;  IDList *next;  IDList *back;  IDList(){next=NULL;back=NULL;}  IDList(int dv){ID=dv;next=NULL;back=NULL;}  virtual ~IDList(){ID = -1; next=NULL;back=NULL;} private:  IDList(const IDList& rhs);  const IDList &operator=(const IDList& rhs);   };

⌨️ 快捷键说明

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