Initial deck and parser classes, and google test with google test src

This commit is contained in:
Kristian Flikka
2013-03-14 12:07:33 +01:00
parent 91615ca969
commit bcc234c945
55 changed files with 50670 additions and 0 deletions

27
eclipse/src/Parser.cpp Normal file
View File

@@ -0,0 +1,27 @@
/*
* File: Parser.cpp
* Author: kflik
*
* Created on March 11, 2013, 3:40 PM
*/
#include <fstream>
using std::ifstream;
#include "Parser.hpp"
Parser::Parser() {
}
Parser::Parser(std::string path) {
// Read keyword definition from file
}
EclipseDeck Parser::Parse() {
EclipseDeck deck;
return deck;
}
Parser::~Parser() {
}