14 lines
152 B
C++
14 lines
152 B
C++
#ifndef CRAWLER_H
|
|
#define CRAWLER_H
|
|
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
struct Crawler {
|
|
string user_agent;
|
|
int links_pressed;
|
|
};
|
|
|
|
#endif
|