This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef INTERFACE_H | |
#define INTERFACE_H | |
#include "code/includes/includes.h" | |
/** | |
* @brief The Subcommand abstract class | |
* Абстрактный класс реализующий паттерн Фабрика (Factory) | |
* содержит три виртуальных метода: | |
* 1 - установка и получение имени суб-кмоаннды, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int | |
FileManager::getFilesNameFromPath(QString filePath, QTreeWidgetItem* widgetItem) | |
{ | |
QDir directory; | |
directory.setPath(filePath); | |
directory.setFilter(QDir::Files | QDir::Dirs | QDir::Hidden | QDir::NoSymLinks | QDir::AllEntries | QDir::NoDotAndDotDot); | |
directory.setSorting(QDir::Size | QDir::Reversed); | |
if(directory.count() == 0) | |
return 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Test</title> | |
</head> | |
<body> | |
<div id="benchmark" style="display: none;"> | |
<b><a id="Question">Question</a></b><br> |