removed apps
[luayats.git] / src / user / lb_atm.h
blob1663b7633279492306667805928598a24bfdd0f8
1 /*************************************************************************
3 * YATS - Yet Another Tiny Simulator
5 **************************************************************************
7 * Copyright (C) 1995-1997 Chair for Telecommunications
8 * Dresden University of Technology
9 * D-01062 Dresden
10 * Germany
12 **************************************************************************
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 *************************************************************************/
30 #ifndef _LB_ATM_H_
31 #define _LB_ATM_H_
33 #include "in1out.h"
35 class lb_atmf: public in1out {
36 typedef in1out baseclass;
38 public:
39 void init(void);
40 rec_typ REC(data *, int);
41 void restim(void);
42 int export(exp_typ *);
43 int command(char *, tok_typ *);
45 dat_typ inp_type; // input data type
47 private:
48 tim_typ last_time;
50 double lb_inc;
51 double lb_siz;
52 double lb_max;
53 double lb_dec;
54 int lb_tag;
56 // Problem Memory Mue 08.06.1998 int *lbSizStat;
59 #endif // _LB_ATM_H_