Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/collada/ExtraTags.h
| Show First 20 Lines • Show All 42 Lines • ▼ Show 20 Lines | public: | ||||
| /** Set given int pointer to value of tag, if it exists. */ | /** Set given int pointer to value of tag, if it exists. */ | ||||
| bool setData(std::string tag, int *data); | bool setData(std::string tag, int *data); | ||||
| /** Set given float pointer to value of tag, if it exists. */ | /** Set given float pointer to value of tag, if it exists. */ | ||||
| bool setData(std::string tag, float *data); | bool setData(std::string tag, float *data); | ||||
| /** Set given char pointer to value of tag, if it exists. */ | /** Set given char pointer to value of tag, if it exists. */ | ||||
| bool setData(std::string tag, char *data); | bool setData(std::string tag, char *data); | ||||
| /** Set given bool pointer to the value of the tag, if it exists. */ | |||||
| bool setData(std::string tag, bool *data); | |||||
| std::string setData(std::string tag, std::string &data); | std::string setData(std::string tag, std::string &data); | ||||
| /** Return true if the extra tags is for specified profile. */ | /** Return true if the extra tags is for specified profile. */ | ||||
| bool isProfile(std::string profile); | bool isProfile(std::string profile); | ||||
| private: | private: | ||||
| /** Disable default copy constructor. */ | /** Disable default copy constructor. */ | ||||
| ExtraTags(const ExtraTags &pre); | ExtraTags(const ExtraTags &pre); | ||||
| Show All 16 Lines | |||||