summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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