From f213ce5411e5f672002c45c12e432977e85a34d2 Mon Sep 17 00:00:00 2001
From: King_DuckZ
Date: Fri, 6 Jun 2014 20:24:24 +0200
Subject: [PATCH] First import
---
.gitignore | 1 +
CMakeLists.txt | 6 +++
src/main.cpp | 112 +++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 119 insertions(+)
create mode 100644 .gitignore
create mode 100644 CMakeLists.txt
create mode 100644 src/main.cpp
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..567609b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+build/
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..a0a425e
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,6 @@
+cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
+project(scraper CXX)
+
+add_executable(${PROJECT_NAME}
+ src/main.cpp
+)
diff --git a/src/main.cpp b/src/main.cpp
new file mode 100644
index 0000000..ae17ce0
--- /dev/null
+++ b/src/main.cpp
@@ -0,0 +1,112 @@
+#include
+#include
+
+namespace {
+ const char g_testData[] = {
+ "\n"
+ " \n"
+ "LibReSSL \n"
+ " \n"
+ " \n"
+ " \n"
+ " \n"
+ " \n"
+ "\n"
+ "\n"
+ "\n"
+ "\n"
+ "\n"
+ " \n"
+ "\n"
+ "LibReSSL is a FREE version of the SSL/TLS protocol\n"
+ "forked from OpenSSL
\n"
+ "\n"
+ "At the moment we are too\n"
+ "busy deleting and rewriting code to make a decent web page. No we\n"
+ "don't want help making web pages, thank you.\n"
+ "
\n"
+ "Check back here soon for updates.
\n"
+ " \n"
+ "\n"
+ "\n"
+ "\n"
+ " \n"
+ "\n"
+ "\n"
+ "\n"
+ "For OpenBSD \n"
+ " \n"
+ " \n"
+ "\n"
+ " \n"
+ "\n"
+ "\n"
+ "\n"
+ "For other OS's \n"
+ " \n"
+ " \n"
+ "\n"
+ "
\n"
+ "
\n"
+ "\n"
+ "Multi OS support will happen once we have\n"
+ "
\n"
+ "\n"
+ "Flensed ,\n"
+ "refactored, rewritten, and fixed enough of the code so we have stable\n"
+ "baseline that we trust and can be maintained/improved. \n"
+ "The right Portability team in place. \n"
+ "A Stable Commitment of\n"
+ "Funding to support an increased development and porting\n"
+ "effort. \n"
+ " \n"
+ "\n"
+ "We know you all want this tomorrow. We are working as fast as we can\n"
+ "but our primary focus is good software that we trust to run\n"
+ "ourselves. We don't want to break your heart .\n"
+ "
\n"
+ "\n"
+ "\n"
+ "\n"
+ "\n"
+ "\n"
+ "\n"
+ };
+} //unnamed namespace
+
+int main (int argc, char* argv[]) {
+ std::cout << g_testData << std::endl;
+ return 0;
+}