18 lines
227 B
C++
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
|