-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInputBox.cpp
More file actions
46 lines (34 loc) · 1.34 KB
/
InputBox.cpp
File metadata and controls
46 lines (34 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* Copyright (C) 2025-2026 Stefan-Mihai MOGA
This file is part of NetVoyager application developed by Stefan-Mihai MOGA.
Diagnose network issues instantly with real-time ping and traceroute tools in a sleek, user-friendly interface.
NetVoyager is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Open
Source Initiative, either version 3 of the License, or any later version.
NetVoyager is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
NetVoyager. If not, see <http://www.opensource.org/licenses/gpl-3.0.html>*/
// InputBox.cpp : implementation file
//
#include "pch.h"
#include "NetVoyager.h"
#include "InputBox.h"
// CInputBox dialog
IMPLEMENT_DYNAMIC(CInputBox, CDialogEx)
CInputBox::CInputBox(CWnd* pParent /*=nullptr*/)
: CDialogEx(IDD_INPUTBOX, pParent)
, m_strHostname(_T(""))
{
}
CInputBox::~CInputBox()
{
}
void CInputBox::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Text(pDX, IDC_HOSTNAME, m_strHostname);
}
BEGIN_MESSAGE_MAP(CInputBox, CDialogEx)
END_MESSAGE_MAP()
// CInputBox message handlers