File: GdlNameDefn.h

package info (click to toggle)
grcompiler 5.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 24,020 kB
  • sloc: cpp: 48,200; ansic: 7,670; sh: 4,427; makefile: 197; xml: 190; perl: 127; sed: 21
file content (69 lines) | stat: -rw-r--r-- 1,945 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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*--------------------------------------------------------------------*//*:Ignore this sentence.
Copyright (C) 1999, 2001 SIL International. All rights reserved.

Distributable under the terms of either the Common Public License or the
GNU Lesser General Public License, as specified in the LICENSING.txt file.

File: GdlNameDefn.h
Responsibility: Sharon Correll
Last reviewed: Not yet.

Description:
    GdlNameDefn contains collections of informative strings.
-------------------------------------------------------------------------------*//*:End Ignore*/
#ifdef _MSC_VER
#pragma once
#endif
#ifndef NAMEDEFN_INCLUDED
#define NAMEDEFN_INCLUDED

/*----------------------------------------------------------------------------------------------
Class: GdlNameDefn
Description: Each GdlNameDefn contains a string (or a collection strings in multiple languages)
	giving a piece of information about the renderer (version, author, comment, etc.).
	These are stored in the GdlRenderer, keyed under the numeric identifier for the name.
Hungarian: ndefn
----------------------------------------------------------------------------------------------*/

class GdlNameDefn : public GdlObject
{
public:
	GdlExtName * ExtName(int i)
	{
		return &m_vextname[i];
	}

	void AddExtName(utf16 wLangID, std::wstring stu)
	{
		m_vextname.push_back(GdlExtName(stu, wLangID));
	}
	void AddExtName(utf16 wLangID, GdlExpression * pexp)
	{
		GdlStringExpression * pexpString = dynamic_cast<GdlStringExpression*>(pexp);
		Assert(pexpString);

		std::wstring stu = pexpString->ConvertToUnicode();
		m_vextname.push_back(GdlExtName(stu, wLangID));
	}

	void DeleteExtName(int i)
	{
		Assert(i < static_cast<int>(m_vextname.size()));
		m_vextname.erase(m_vextname.begin() + i);
	}

	size_t NameCount()
	{
		 return m_vextname.size();
	}

protected:
	std::vector<GdlExtName>	m_vextname;
};


typedef std::map<int, GdlNameDefn *> NameDefnMap;



#endif // NAMEDEFN_INCLUDED