⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 proteinseq.h

📁 在任务级并行平台P2HP上开发的demo应用
💻 H
字号:
// ProteinSeq.h: interface for the ProteinSeq class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_PROTEINSEQ_H__797F4545_1E94_41B8_91C6_5F1AF7C2428A__INCLUDED_)
#define AFX_PROTEINSEQ_H__797F4545_1E94_41B8_91C6_5F1AF7C2428A__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class ProteinSeq  
{
public:
	ProteinSeq(CString& initialStr, int energe);
	virtual ~ProteinSeq();
	int getLength() const;
	int getRecorderEnergy() const;
	CString getSequence() const;
	CString getOriginStr() const;
	bool isReversed() const;
	void reverseSeq();
private:
	CString parseString( const CString& origin, int startPoint);
	int length;
	int recorderEnerge;
	CString originStr;
	CString sequence;
	bool reversed;
};

#endif // !defined(AFX_PROTEINSEQ_H__797F4545_1E94_41B8_91C6_5F1AF7C2428A__INCLUDED_)

⌨️ 快捷键说明

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