File: d_cccs.h

package info (click to toggle)
acs 021-2.3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,196 kB
  • ctags: 2,629
  • sloc: cpp: 15,013; makefile: 166
file content (21 lines) | stat: -rw-r--r-- 690 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*$Id: d_cccs.h,v 11.22 96/02/18 11:45:34 al Exp $ -*- C++ -*-
 * current controlled current source
 */
#include "e_ccsrc.h"
#ifndef D_CCCS_H
#define D_CCCS_H
/*--------------------------------------------------------------------------*/
class DEV_CCCS : public CCSRC_BASE {
public:
	DEV_CCCS(){devclass=TWOPORT;}
	DEV_CCCS(CONST DEV_CCCS& p):CCSRC_BASE(p){}
	CARD*	clone()CONST{return new DEV_CCCS(*this);}
	void	expand();
	bool	dotr();
	void	trload(){trload_active();}
	void	trunload(){trunload_active();}
	void	doac();
};
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
#endif