summaryrefslogtreecommitdiffhomepage
path: root/Magic2/ContentBundle.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-07 18:22:51 +0200
committerAki <please@ignore.pl>2022-04-07 18:22:51 +0200
commit709b67740474f1cb84a965a6a405b8c51f5e7b50 (patch)
tree1a301d20ddc972fcae7a79ff0faa4bc4736cb9f8 /Magic2/ContentBundle.h
parent9fefe5048a76629a1fad30742c62557f73ad7e86 (diff)
downloadstarshatter-709b67740474f1cb84a965a6a405b8c51f5e7b50.zip
starshatter-709b67740474f1cb84a965a6a405b8c51f5e7b50.tar.gz
starshatter-709b67740474f1cb84a965a6a405b8c51f5e7b50.tar.bz2
Removed files that were originally skipped in vcxproj
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
-