ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/FAS/src/FAS.cpp
Revision: 67
Committed: Tue Aug 13 17:07:15 2002 UTC (21 years, 10 months ago) by tim
File size: 746 byte(s)
Log Message:
*** empty log message ***

File Contents

# Content
1 //---------------------------------------------------------------------------
2
3 #include <clx.h>
4 #pragma hdrstop
5 int main(void)
6 {
7 try
8 {
9 Application->Initialize();
10 Application->Run();
11 }
12 catch (Exception &exception)
13 {
14 Application->ShowException(&exception);
15 }
16 catch(...)
17 {
18 try
19 {
20 throw Exception("");
21 }
22 catch(Exception &exception)
23 {
24 Application->ShowException(&exception);
25 }
26 }
27 return 0;
28 }
29 //---------------------------------------------------------------------------