inference.h
来自「预测神经网络」· C头文件 代码 · 共 57 行
H
57 行
#if !defined(AFX_INFERENCE_H__91219D3B_0C29_11D6_A522_00000E98E3F5__INCLUDED_)
#define AFX_INFERENCE_H__91219D3B_0C29_11D6_A522_00000E98E3F5__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Inference.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CInference dialog
#include"NeuralB.h"
class CInference : public CPropertyPage
{
DECLARE_DYNCREATE(CInference)
// Construction
public:
void displayinference();
bool netConstruct;
bool netExist;
NeuralB * m_Neural;
CString m_inferStr;;
CInference();
~CInference();
// Dialog Data
//{{AFX_DATA(CInference)
enum { IDD = IDD_Inference };
CListBox m_resList;
//}}AFX_DATA
// Overrides
// ClassWizard generate virtual function overrides
//{{AFX_VIRTUAL(CInference)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CInference)
afx_msg void OnopenNet();
afx_msg void OnOpenSample();
afx_msg void OnbeginInference();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_INFERENCE_H__91219D3B_0C29_11D6_A522_00000E98E3F5__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?