blob: fb0c0d3bf2d44ba6ddc35ae221e5121808a4d617 (
plain) (
blame)
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
|
//===========================================================================
// Copyright (C) 2003 Radical Entertainment Ltd. All rights reserved.
//
// Component: tNames with case insensitivity
//
// Description: hashed names that are case insensitive
//
// Authors: Ian Gipson
//
// Revisions Date Author Revision
// 2003/06/02 IJG Created
//
//===========================================================================
// Recompilation protection flag.
#ifndef __NAMEINSENSITIVE_H_
#define __NAMEINSENSITIVE_H_
//===========================================================================
// Nested Includes
//===========================================================================
#include <p3d/entity.hpp>
//===========================================================================
// Forward References
//===========================================================================
//===========================================================================
// Constants, Typedefs, and Macro Definitions (needed by external clients)
//===========================================================================
//===========================================================================
// Interface Definitions
//===========================================================================
class tNameInsensitive : public tName
{
private:
typedef tName Parent;
public:
// various constructors
tNameInsensitive(); // default constructor, both uid and text will be invalid
tNameInsensitive( const char* name ); // sets text name and uid
tNameInsensitive( const tNameInsensitive& ); // copy from another
const tNameInsensitive& operator=( const tNameInsensitive& other );
const tNameInsensitive& operator=( const char* other );
void SetText(const char* name);
private:
const tNameInsensitive& operator=(const tName& other);
tNameInsensitive( const tName& ); // copy from another name - DO NOT PERMIT
void SetTextOnly(const char*); //set the text without changing the UID
// the real data
};
#endif //__NAMEINSENSITIVE_H_
|