preprocessing.h

来自「Calculator program written by DLLs with 」· C头文件 代码 · 共 23 行

H
23
字号
// Preprocessing.h: interface for the CPreprocessing class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_PREPROCESSING_H__28F59065_E116_47ED_8EFD_9BC943FF340C__INCLUDED_)
#define AFX_PREPROCESSING_H__28F59065_E116_47ED_8EFD_9BC943FF340C__INCLUDED_

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

class CPreprocessing  
{
public:
	_declspec(dllexport) CString Replacing (CString strFomular);
	_declspec(dllexport) int Checking (CString strFomular);
	_declspec(dllexport) CPreprocessing();
	_declspec(dllexport) virtual ~CPreprocessing();
	int level;
};

#endif // !defined(AFX_PREPROCESSING_H__28F59065_E116_47ED_8EFD_9BC943FF340C__INCLUDED_)

⌨️ 快捷键说明

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