-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstringdict.cpp
More file actions
26 lines (22 loc) · 1.4 KB
/
stringdict.cpp
File metadata and controls
26 lines (22 loc) · 1.4 KB
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
//############################################################################
//## ##
//## STRINGDICT.CPP ##
//## ##
//## Global collection of all strings in application, no duplicates. ##
//## ##
//## OpenSourced 12/5/2000 by John W. Ratcliff ##
//## ##
//## No warranty expressed or implied. ##
//## ##
//## Part of the Q3BSP project, which converts a Quake 3 BSP file into a ##
//## polygon mesh. ##
//############################################################################
//## ##
//## Contact John W. Ratcliff at jratcliff@verant.com ##
//############################################################################
#include "stringdict.h"
StringDict *StringDict::gSingleton=0;