2025-06-20 12:00:19 +02:00

18 lines
227 B
C++

#ifndef WEB_H
#define WEB_H
#include <QList>
#include <mainwindow.h>
#include "path.h"
class Web
{
private:
QList<Path*> list;
public:
Web();
Web(const QList<Path*> &list);
void siteHtml();
};
#endif // WEB_H