summaryrefslogtreecommitdiffhomepage
path: root/nGenEx/ContentBundle.h
diff options
context:
space:
mode:
Diffstat (limited to 'nGenEx/ContentBundle.h')
-rw-r--r--nGenEx/ContentBundle.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/nGenEx/ContentBundle.h b/nGenEx/ContentBundle.h
index d322466..d0c103b 100644
--- a/nGenEx/ContentBundle.h
+++ b/nGenEx/ContentBundle.h
@@ -1,15 +1,15 @@
/* Project nGenEx
- Destroyer Studios LLC
- Copyright © 1997-2006. All Rights Reserved.
+ Destroyer Studios LLC
+ Copyright © 1997-2006. All Rights Reserved.
- SUBSYSTEM: nGenEx.lib
- FILE: ContentBundle.h
- AUTHOR: John DiCamillo
+ SUBSYSTEM: nGenEx.lib
+ FILE: ContentBundle.h
+ AUTHOR: John DiCamillo
- OVERVIEW
- ========
- Chained collection of localized strings
+ OVERVIEW
+ ========
+ Chained collection of localized strings
*/
#ifndef ContentBundle_h
@@ -25,23 +25,23 @@
class ContentBundle
{
public:
- static const char* TYPENAME() { return "ContentBundle"; }
+ static const char* TYPENAME() { return "ContentBundle"; }
- ContentBundle(const char* bundle, Locale* locale);
- virtual ~ContentBundle();
+ ContentBundle(const char* bundle, Locale* locale);
+ virtual ~ContentBundle();
- int operator == (const ContentBundle& that) const { return this == &that; }
+ int operator == (const ContentBundle& that) const { return this == &that; }
- const Text& GetName() const { return name; }
- Text GetText(const char* key) const;
- bool IsLoaded() const { return !values.isEmpty(); }
+ const Text& GetName() const { return name; }
+ Text GetText(const char* key) const;
+ bool IsLoaded() const { return !values.isEmpty(); }
protected:
- void LoadBundle(const char* filename);
- Text FindFile(const char* bundle, Locale* locale);
+ void LoadBundle(const char* filename);
+ Text FindFile(const char* bundle, Locale* locale);
- Text name;
- Dictionary<Text> values;
+ Text name;
+ Dictionary<Text> values;
};
#endif ContentBundle_h