creditverification.h

来自「Visual_C++[1].NET_Bible1 Visual_C++宝典书中」· C头文件 代码 · 共 18 行

H
18
字号
// CreditVerification.h
#pragma once

#ifdef _DLL
#define DLLSPEC __declspec (dllexport)
#else
#define DLLSPEC __declspec (dllimport)
#endif

class DLLSPEC CCreditVerification
{
private:
	enum CardType {Visa, MasterCard, Amex} m_type;
public:
	void SetCardType(char* s);
	bool VerifyCardNumber(long n);
};

⌨️ 快捷键说明

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