blob: 260e0d7667ff0bd40d5d7819aa3646ae786e771e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _CREDIT_HPP_
#define _CREDIT_HPP_
class Credit {
public:
Credit( int max_vcs = 1 );
~Credit( );
int *vc;
int vc_cnt;
bool head, tail;
int id;
};
#endif
|