From 8898ad9b25fca6afe2374d293a981db02a83d7e9 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Thu, 31 May 2012 14:46:27 +0000 Subject: Committing the documentation to svn to have it accessible online --- .../html/n_gen_ex_2_content_bundle_8h_source.html | 165 +++++++++++++++++++++ 1 file changed, 165 insertions(+) create mode 100644 Doc/doxygen/html/n_gen_ex_2_content_bundle_8h_source.html (limited to 'Doc/doxygen/html/n_gen_ex_2_content_bundle_8h_source.html') diff --git a/Doc/doxygen/html/n_gen_ex_2_content_bundle_8h_source.html b/Doc/doxygen/html/n_gen_ex_2_content_bundle_8h_source.html new file mode 100644 index 0000000..e7365e3 --- /dev/null +++ b/Doc/doxygen/html/n_gen_ex_2_content_bundle_8h_source.html @@ -0,0 +1,165 @@ + + + + + +Starshatter_Open: D:/SRC/StarshatterSVN/nGenEx/ContentBundle.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
Starshatter_Open +
+
Open source Starshatter engine
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
ContentBundle.h
+
+
+Go to the documentation of this file.
1 /* Project nGenEx
+
2  Destroyer Studios LLC
+
3  Copyright © 1997-2006. All Rights Reserved.
+
4 
+
5  SUBSYSTEM: nGenEx.lib
+
6  FILE: ContentBundle.h
+
7  AUTHOR: John DiCamillo
+
8 
+
9 
+
10  OVERVIEW
+
11  ========
+
12  Chained collection of localized strings
+
13 */
+
14 
+
15 #ifndef ContentBundle_h
+
16 #define ContentBundle_h
+
17 
+
18 #include "Types.h"
+
19 #include "Dictionary.h"
+
20 #include "Text.h"
+
21 #include "Locale_ss.h"
+
22 
+
23 // +--------------------------------------------------------------------+
+
24 
+
25 class ContentBundle
+
26 {
+
27 public:
+
28  static const char* TYPENAME() { return "ContentBundle"; }
+
29 
+
30  ContentBundle(const char* bundle, Locale* locale);
+
31  virtual ~ContentBundle();
+
32 
+
33  int operator == (const ContentBundle& that) const { return this == &that; }
+
34 
+
35  const Text& GetName() const { return name; }
+
36  Text GetText(const char* key) const;
+
37  bool IsLoaded() const { return !values.isEmpty(); }
+
38 
+
39 protected:
+
40  void LoadBundle(const char* filename);
+
41  Text FindFile(const char* bundle, Locale* locale);
+
42 
+
43  Text name;
+ +
45 };
+
46 
+
47 #endif ContentBundle_h
+
48 
+
+
+ + + + -- cgit v1.1