diff options
author | Mike Buland <mike@xagasoft.com> | 2024-09-26 14:43:22 -0700 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2024-09-26 14:43:22 -0700 |
commit | 76821551f312dd447a03748a01670f3718cd8345 (patch) | |
tree | aca702a69c9eb3f7dd8080dcd20d7f238bbbaa81 /src/stable/myriadstream.cpp | |
parent | d5e966a0563e3f01c02c3cfb1f3a83fec852168b (diff) | |
download | libbu++-76821551f312dd447a03748a01670f3718cd8345.tar.gz libbu++-76821551f312dd447a03748a01670f3718cd8345.tar.bz2 libbu++-76821551f312dd447a03748a01670f3718cd8345.tar.xz libbu++-76821551f312dd447a03748a01670f3718cd8345.zip |
Basic update to new API for existing components.
This may not all work yet, but it all compiles!
Diffstat (limited to 'src/stable/myriadstream.cpp')
-rw-r--r-- | src/stable/myriadstream.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stable/myriadstream.cpp b/src/stable/myriadstream.cpp index 9ea2e17..eaf91a5 100644 --- a/src/stable/myriadstream.cpp +++ b/src/stable/myriadstream.cpp | |||
@@ -166,3 +166,9 @@ Bu::String Bu::MyriadStream::getLocation() const | |||
166 | return pStream->getLocation(); | 166 | return pStream->getLocation(); |
167 | } | 167 | } |
168 | 168 | ||
169 | Bu::Myriad::StreamId Bu::MyriadStream::getId() const | ||
170 | { | ||
171 | Bu::MutexLocker l( mAccess ); | ||
172 | return pStream->getStreamId(); | ||
173 | } | ||
174 | |||