Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2011-03-28 13:31:44 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2011-03-28 13:31:44 +0400
commitbd9854e7d1dee9b59ccab146c43db542e4873171 (patch)
tree9a60f633b6311451573da62eb9feeeff865e8d2d /source/blender/collada/ExtraTags.h
parente5bf21898ea7fdc9d13b4f046fcbcf16064c6df4 (diff)
Import light blender profile if it exists.
Diffstat (limited to 'source/blender/collada/ExtraTags.h')
-rw-r--r--source/blender/collada/ExtraTags.h25
1 files changed, 24 insertions, 1 deletions
diff --git a/source/blender/collada/ExtraTags.h b/source/blender/collada/ExtraTags.h
index 09a86741481..5c31a5a95db 100644
--- a/source/blender/collada/ExtraTags.h
+++ b/source/blender/collada/ExtraTags.h
@@ -42,7 +42,19 @@ public:
virtual ~ExtraTags();
/** Handle the beginning of an element. */
- bool addTag( const std::string tag, const std::string data);
+ bool addTag(std::string tag, std::string data);
+
+ /** Set given short pointer to value of tag, if it exists. */
+ void setData(std::string tag, short *data);
+
+ /** Set given int pointer to value of tag, if it exists. */
+ void setData(std::string tag, int *data);
+
+ /** Set given float pointer to value of tag, if it exists. */
+ void setData(std::string tag, float *data);
+
+ /** Set given char pointer to value of tag, if it exists. */
+ void setData(std::string tag, char *data);
private:
/** Disable default copy constructor. */
@@ -50,5 +62,16 @@ private:
/** Disable default assignment operator. */
const ExtraTags& operator= ( const ExtraTags& pre );
+ /** The profile for which the tags are. */
std::string profile;
+
+ /** Map of tag and text pairs. */
+ std::map<std::string, std::string> tags;
+
+ /** Get text data for tag as an int. */
+ int asInt(std::string tag, bool *ok);
+ /** Get text data for tag as a float. */
+ float asFloat(std::string tag, bool *ok);
+ /** Get text data for tag as a string. */
+ std::string asString(std::string tag, bool *ok);
};