summaryrefslogtreecommitdiffhomepage
path: root/Magic2/ContentBundle.h
diff options
context:
space:
mode:
Diffstat (limited to 'Magic2/ContentBundle.h')
-rw-r--r--Magic2/ContentBundle.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/Magic2/ContentBundle.h b/Magic2/ContentBundle.h
deleted file mode 100644
index 6bad7a8..0000000
--- a/Magic2/ContentBundle.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
- Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
- Copyright (c) 1997-2006, Destroyer Studios LLC.
-
- AUTHOR: John DiCamillo
-
-
- OVERVIEW
- ========
- Chained collection of localized strings
-*/
-
-#ifndef ContentBundle_h
-#define ContentBundle_h
-
-#include "Types.h"
-#include "Dictionary.h"
-#include "Text.h"
-#include "Locale_ss.h"
-
-// +--------------------------------------------------------------------+
-
-class ContentBundle
-{
-public:
- static const char* TYPENAME() { return "ContentBundle"; }
-
- ContentBundle(const char* bundle, Locale* locale);
- virtual ~ContentBundle();
-
- 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(); }
-
-protected:
- void LoadBundle(const char* filename);
- Text FindFile(const char* bundle, Locale* locale);
-
- Text name;
- Dictionary<Text> values;
-};
-
-#endif ContentBundle_h
-