1 /*****************************************************************************/
2 /*									     */
3 /*				   ICLOG.H				     */
4 /*									     */
5 /* (C) 1995-96	Ullrich von Bassewitz					     */
6 /*		Wacholderweg 14						     */
7 /*		D-70597 Stuttgart					     */
8 /* EMail:	uz@ibb.schwaben.com					     */
9 /*									     */
10 /*****************************************************************************/
11 
12 
13 
14 // $Id$
15 //
16 // $Log$
17 //
18 //
19 
20 
21 
22 #ifndef _ICLOG_H
23 #define _ICLOG_H
24 
25 
26 
27 #include "datetime.h"
28 
29 
30 
31 /*****************************************************************************/
32 /*				     Data				     */
33 /*****************************************************************************/
34 
35 
36 
37 // Names of the logfiles
38 extern String OutgoingLog1;
39 extern String OutgoingLog2;
40 extern String OutgoingLog3;
41 extern String IncomingLog1;
42 extern String IncomingLog2;
43 extern String IncomingLog3;
44 
45 // If true, log calls with a chargecount of zero
46 extern int LogZeroCostCalls;
47 
48 // Price of a charge unit
49 extern double PricePerUnit;
50 
51 
52 
53 // End of ICLOG.H
54 
55 #endif
56 
57