repo.or.cz
/
siwg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Tree2
[siwg.git]
/
espy
/
src
/
tree
/
tree.cc
blob
56a26f7fed65f68598729af94796af5ab2902fb8
1
/**
2
* \file
3
*
4
* main().
5
*
6
*/
7
8
#include <iostream>
9
using namespace
std
;
10
11
#include
"Settings.h"
12
#include
"TreeEngine.h"
13
#include
"ConnectSix.h"
14
15
TreeEngine
<
ConnectSix
>
engine
;
16
17
int
main
(
int
argc
,
char
**
argv
)
18
{
19
engine
.
main
();
20
21
cout
<<
"Bye!
\n
"
;
22
23
return
0
;
24
}