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:
authorSybren A. Stüvel <sybren@stuvel.eu>2017-02-15 17:26:00 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2017-04-06 17:04:31 +0300
commitc0ec0a19da523e4f09c38076f6b1831e927e36a7 (patch)
tree7b5098d15a857bc88bd8bc24e456dcdd67ea0d32
parent5f23f5b5168e1ec2203791e9e3bea6d2a2cf77cf (diff)
Alembic: added some getter functions to help debug prints etc.
-rw-r--r--source/blender/alembic/intern/abc_object.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/alembic/intern/abc_object.h b/source/blender/alembic/intern/abc_object.h
index 0f733e67d3f..7d400f17a2a 100644
--- a/source/blender/alembic/intern/abc_object.h
+++ b/source/blender/alembic/intern/abc_object.h
@@ -161,6 +161,10 @@ public:
Object *object() const;
void object(Object *ob);
+ const std::string & name() const { return m_name; }
+ const std::string & object_name() const { return m_object_name; }
+ const std::string & data_name() const { return m_data_name; }
+
virtual bool valid() const = 0;
virtual void readObjectData(Main *bmain, float time) = 0;