File: BEID_ulwrapper.java

package info (click to toggle)
beid 3.5.2.dfsg-10
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 147,240 kB
  • ctags: 34,507
  • sloc: cpp: 149,944; ansic: 41,577; java: 8,927; cs: 6,528; sh: 2,426; perl: 1,866; xml: 805; python: 463; makefile: 263; lex: 92
file content (14 lines) | stat: -rw-r--r-- 449 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package be.belgium.eid;

/******************************************************************************//**
  * Class to be used to wrap any kind of long value.
  * This class can be used when calling: BEID_ReaderContext.isCardChanged()
  *********************************************************************************/
public class BEID_ulwrapper
{
	public BEID_ulwrapper(long lLong)
	{
		m_long = lLong;
	}
	public long m_long;
}