Changeset 238 in flair-src for trunk/lib/FlairCore/src/Semaphore.cpp
- Timestamp:
- May 15, 2018, 4:41:02 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairCore/src/Semaphore.cpp
r203 r238 24 24 namespace core { 25 25 26 Semaphore::Semaphore(const Object *parent, uint32_t initialValue, string name )27 : Object(parent, name, "semaphore") {28 pimpl_ = new Semaphore_impl(this, initialValue);26 Semaphore::Semaphore(const Object *parent, uint32_t initialValue, string name, Type type) 27 : Object(parent, name, "semaphore"),type(type) { 28 pimpl_ = new Semaphore_impl(this, name, initialValue,type); 29 29 } 30 30
Note:
See TracChangeset
for help on using the changeset viewer.