📄 keyword.h
字号:
// Keyword.h: interface for the CKeyword class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_KEYWORD_H__9CFAA93C_A15F_4A93_8B90_C550F52A8F9E__INCLUDED_)
#define AFX_KEYWORD_H__9CFAA93C_A15F_4A93_8B90_C550F52A8F9E__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Cipher.h"
#include <stdio.h>
#include <iostream>
#include <stdlib.h>
#include <cassert>
#include <string>
using namespace std;
class CKeyword : public CCipher
{
public:
CKeyword();
virtual ~CKeyword();
CString m_cipherString;
CString m_plainString;
CString m_key;
char sub[200];
void Decipher();
void Encipher();
};
#endif // !defined(AFX_KEYWORD_H__9CFAA93C_A15F_4A93_8B90_C550F52A8F9E__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -