You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
789 B
C++
44 lines
789 B
C++
// StdMarkCtr.cpp : 实现文件
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "DlgStdMarkCtr.h"
|
|
#include "afxdialogex.h"
|
|
#include "GlobalFunction.h"
|
|
#include "LogMgr.h"
|
|
|
|
// CDlgStdMarkCtr 对话框
|
|
|
|
IMPLEMENT_DYNAMIC(CDlgStdMarkCtr, CDialogEx)
|
|
|
|
CDlgStdMarkCtr::CDlgStdMarkCtr(CWnd* pParent /*=NULL*/)
|
|
{
|
|
|
|
}
|
|
|
|
CDlgStdMarkCtr::~CDlgStdMarkCtr()
|
|
{
|
|
}
|
|
|
|
void CDlgStdMarkCtr::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CDialogEx::DoDataExchange(pDX);
|
|
}
|
|
BEGIN_MESSAGE_MAP(CDlgStdMarkCtr, CDialogEx)
|
|
ON_BN_CLICKED(IDC_START_MARK, &CDlgStdMarkCtr::OnBnClickedStartMark)
|
|
ON_BN_CLICKED(IDC_STOP_MARK, &CDlgStdMarkCtr::OnBnClickedStopMark)
|
|
END_MESSAGE_MAP()
|
|
|
|
// CDlgStdMarkCtr 消息处理程序
|
|
|
|
|
|
//开始标刻
|
|
void CDlgStdMarkCtr::OnBnClickedStartMark()
|
|
{
|
|
|
|
}
|
|
//停止标刻(pci 卡)
|
|
void CDlgStdMarkCtr::OnBnClickedStopMark()
|
|
{
|
|
}
|