1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/ChenYLhuman-gamePlanTool

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
MyListWidgetItem.cpp 780
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
箜栢 Отправлено 02.03.2020 04:14 ef29c3d
#include "MyListWidgetItem.h"
MyListWidgetItem::MyListWidgetItem(QString fullPath, QListWidget* listview, int type): QListWidgetItem(listview, type) {
this->fullPath = fullPath;
}
MyListWidgetItem::MyListWidgetItem(QString fullPath, const QString& text, QListWidget* listview, int type): QListWidgetItem(text, listview, type) {
this->fullPath = fullPath;
}
MyListWidgetItem::MyListWidgetItem(QString fullPath, const QIcon& icon, const QString& text, QListWidget* listview, int type) : QListWidgetItem(icon, text, listview, type) {
this->fullPath = fullPath;
}
MyListWidgetItem::MyListWidgetItem(QString fullPath, const QListWidgetItem& other) : QListWidgetItem(other) {
this->fullPath = fullPath;
}
QString MyListWidgetItem::getFullPath( ) {
return this->fullPath;
}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/ChenYLhuman-gamePlanTool.git
git@api.gitlife.ru:oschina-mirror/ChenYLhuman-gamePlanTool.git
oschina-mirror
ChenYLhuman-gamePlanTool
ChenYLhuman-gamePlanTool
master