ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Download File
|
View Changeset
|
Root Listing
root
/
proj
/
trunk
/
IMAPHandler
/
Tester.cpp
Revision:
108
Committed:
2003-03-31T20:49:38-08:00
(22 years, 2 months ago) by
douglas
File size:
236 byte(s)
Log Message:
Initial revision
File Contents
#
Content
1
// IMAP Handler
2
//
3
// Douglas Thrift
4
//
5
// Tester.cpp
6
7
#include
"IMAPHandler.h"
8
9
string
program
;
10
bool
debug
=
true
;
11
12
int
main
(
int
argc
,
char
*
argv
[])
13
{
14
program
=
argv
[
0
];
15
16
IMAPHandler
tester
(
"imap.myrealbox.com"
,
true
);
17
18
return
0
;
19
}