My library isn't getting located. I included it properly I thought, maybe someone else can figure out what the heck is going on. You can compile and check out the source code here.
Thanks guys! I havn't had a chance to test the fixes quite yet because it's late and I need to get some rest, but I will comment tomorrow if I get everything working. I paid 20 bucks for a years worth of compiles on that site because it looked really legit and I needed cloud storage / compiling so it is definitely great for my purposes.
So looks like removing the <> from the include and also moving the .h file into the parent folder instead of into the 'libraries' folder was what was needed. Problem fixed, and I definitely HIGHLY recommend compilr.com if you need a cloud based compiler sort of thing.
If its issue with way of including a header file, check this link to understand it: http://www.questionscompiled.com/answer.jsp?qid=135&technology=cpp
Question:
What is difference between the following syntax:
#include <filename.h>
#include "filename.h"
Answer:
File inclusion can be done in the following 2 ways:
#include <filename.h>
#include "filename.h"