summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-12-25 22:31:26 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-12-25 22:31:26 +0100
commit30c7bb906558db34bf936fc748e12ee5aa57979e (patch)
treeb4562614a82ef81e609420d584775d84a983d551 /src
parent4707a97b30ad01e615c26782940fae4072497cd1 (diff)
downloadcrawler-30c7bb906558db34bf936fc748e12ee5aa57979e.tar.gz
crawler-30c7bb906558db34bf936fc748e12ee5aa57979e.tar.bz2
some starting here
Diffstat (limited to 'src')
-rw-r--r--src/DNSResolver.h7
-rw-r--r--src/Frontier.h9
-rw-r--r--src/GNUmakefile15
-rw-r--r--src/HTTPFetcher.h7
-rw-r--r--src/Url.h9
5 files changed, 47 insertions, 0 deletions
diff --git a/src/DNSResolver.h b/src/DNSResolver.h
new file mode 100644
index 0000000..8f79734
--- /dev/null
+++ b/src/DNSResolver.h
@@ -0,0 +1,7 @@
+#ifndef __DNSRESOLVER_H
+#define __DNSRESOLVER_H
+
+class DNSResolver {
+};
+
+#endif
diff --git a/src/Frontier.h b/src/Frontier.h
new file mode 100644
index 0000000..1b7d6da
--- /dev/null
+++ b/src/Frontier.h
@@ -0,0 +1,9 @@
+#ifndef __FRONTIER_H
+#define __FRONTIER_H
+
+class Frontier {
+ public:
+ virtual Url getNextUrl( ) = 0;
+};
+
+#endif
diff --git a/src/GNUmakefile b/src/GNUmakefile
new file mode 100644
index 0000000..c73bca3
--- /dev/null
+++ b/src/GNUmakefile
@@ -0,0 +1,15 @@
+TOPDIR = ..
+
+SUBDIRS =
+
+INCLUDE_DIRS =
+
+INCLUDE_LDFLAGS =
+
+INCLUDE_LIBS =
+
+CPP_BINS =
+
+OBJS =
+
+-include $(TOPDIR)/makefiles/gmake/sub.mk
diff --git a/src/HTTPFetcher.h b/src/HTTPFetcher.h
new file mode 100644
index 0000000..ae9f80e
--- /dev/null
+++ b/src/HTTPFetcher.h
@@ -0,0 +1,7 @@
+#ifndef __HTTPFETCHER_H
+#define __HTTPFETCHER_H
+
+class HTTPFetcher {
+};
+
+#endif
diff --git a/src/Url.h b/src/Url.h
new file mode 100644
index 0000000..1b7d6da
--- /dev/null
+++ b/src/Url.h
@@ -0,0 +1,9 @@
+#ifndef __FRONTIER_H
+#define __FRONTIER_H
+
+class Frontier {
+ public:
+ virtual Url getNextUrl( ) = 0;
+};
+
+#endif