GitList
Repositories
Help
Report an Issue
boggleQt
Code
Commits
Branches
Tags
Search
Tree:
bfb7340
Branches
Tags
master
boggleQt
main.cpp
pushing work done till now
Dev Ghai
commited
bfb7340
at 2013-09-23 08:22:07
main.cpp
Blame
History
Raw
//Coding style guide: http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml #include <QCoreApplication> #include <iostream> #include "logic/headers/Board.h" int main(int argc, char *argv[]) { // QCoreApplication a(argc, argv); char* keypress = new char[10]; std::cout<<"\u2250"; std::cin>>keypress; Board* b = new Board(4, "abcdef"); b->Print(); // return a.exec(); }