aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: 1335355fa641b6242c1d1151f4c4fa8ae69d2f99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*

  description: This is the main cpp file for the cardeval project.

  author: Yann Herklotz <ymherklotz@gmail.com>
  date created: 18-07-2016
  filename: main.cpp

 */

#include <iostream>
#include <string>

#include <tinyxml2.h>

#include "../include/cardeval.hpp"

using namespace std;
using namespace tinyxml2;

int main(int argc, char** argv) {
    CardEval ce(argc, argv);
    ce.get_cards();
    return 0;
}