aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sislangrecord.h
blob: e532c4e643e245d77719757dd9a197e388eab67d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _SISLANGRECORD_H
#define _SISLANGRECORD_H

#include "sistypes.h"

/**
 * A simple language record, only containing the epoc specific 16 bit
 * language number.
 */
class SISLangRecord
{
public:

	/**
	 * Populate the fields.
	 */
	void fillFrom(uchar* buf, int* base);

	uint16 m_lang;
};

#endif