Initial Commit

# Conflicts:
#	CMakeLists.txt
This commit is contained in:
2016-03-25 21:26:51 -07:00
parent c4d91f18a1
commit 7a2495a284
4 changed files with 206 additions and 0 deletions

6
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
add_executable(cardtest
main.cpp)
target_link_libraries(cardtest
card)

12
test/main.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "Card.hpp"
#include <iostream>
int main()
{
card::Card card{"test.mc"};
card.setGame("GM8E");
card.setMaker("01");
printf("Selected Game ID: %.4s\n", card.getGame());
printf("Selected Maker ID: %.2s\n", card.getMaker());
return 0;
}