www.pudn.com > Genecircus20070919.rar > Gene.h


// Gene.h: interface for the Gene class. 
// 
////////////////////////////////////////////////////////////////////// 
 
#if !defined(AFX_GENE_H__2D1D1CF2_2D2B_4C5C_A8DE_60A8CACA7C61__INCLUDED_) 
#define AFX_GENE_H__2D1D1CF2_2D2B_4C5C_A8DE_60A8CACA7C61__INCLUDED_ 
#include "wx_pch.h" 
#include "Control.h" 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
 
typedef  std::vector index_line; 
 
class Gene   
{ 
public: 
	Gene(); 
	virtual ~Gene(); 
    double concentration; 
    index_line temp; 
	int x; 
	int y; 
	int index; 
	int index_express; 
	wxString name; 
	bool if_have_other;//false is has not out system's node 
	int index_orginial; 
	bool delete_if; 
}; 
 
#endif // !defined(AFX_GENE_H__2D1D1CF2_2D2B_4C5C_A8DE_60A8CACA7C61__INCLUDED_)