-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathserverlistitem.cpp
More file actions
22 lines (22 loc) · 1022 Bytes
/
Copy pathserverlistitem.cpp
File metadata and controls
22 lines (22 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/***********************************************************************************
**
** ServerListItem.cpp
**
** Copyright (C) December 2016 Hotride
**
************************************************************************************
*/
//----------------------------------------------------------------------------------
#include "ServerListItem.h"
//----------------------------------------------------------------------------------
CServerListItem::CServerListItem(const QString &name)
: QListWidgetItem(name)
{
}
//----------------------------------------------------------------------------------
CServerListItem::CServerListItem(const QString &name, const QString &address, const QString &account, const QString &password, const QString &character, const bool &encrypted)
: QListWidgetItem(name), m_Address(address), m_Account(account), m_Password(password),
m_Character(character), m_Command(""), m_Encrypted(encrypted)
{
}
//----------------------------------------------------------------------------------