| JUCE
    | 
Internal class used as the base class for all message objects. More...
#include <juce_MessageManager.h>
| Public Types | |
| using | Ptr = ReferenceCountedObjectPtr<MessageBase> | 
| Public Member Functions | |
| MessageBase ()=default | |
| ~MessageBase () override=default | |
| virtual void | messageCallback ()=0 | 
| bool | post () | 
|  Public Member Functions inherited from ReferenceCountedObject | |
| void | incReferenceCount () noexcept | 
| Increments the object's reference count. | |
| void | decReferenceCount () noexcept | 
| Decreases the object's reference count. | |
| bool | decReferenceCountWithoutDeleting () noexcept | 
| Decreases the object's reference count. | |
| int | getReferenceCount () const noexcept | 
| Returns the object's current reference count. | |
| Additional Inherited Members | |
|  Protected Member Functions inherited from ReferenceCountedObject | |
| ReferenceCountedObject ()=default | |
| Creates the reference-counted object (with an initial ref count of zero). | |
| ReferenceCountedObject (const ReferenceCountedObject &) noexcept | |
| Copying from another object does not affect this one's reference-count. | |
| ReferenceCountedObject (ReferenceCountedObject &&) noexcept | |
| Copying from another object does not affect this one's reference-count. | |
| ReferenceCountedObject & | operator= (const ReferenceCountedObject &) noexcept | 
| Copying from another object does not affect this one's reference-count. | |
| ReferenceCountedObject & | operator= (ReferenceCountedObject &&) noexcept | 
| Copying from another object does not affect this one's reference-count. | |
| virtual | ~ReferenceCountedObject () | 
| Destructor. | |
| void | resetReferenceCount () noexcept | 
| Resets the reference count to zero without deleting the object. | |
Internal class used as the base class for all message objects.
You shouldn't need to use this directly - see the CallbackMessage or Message classes instead.
| 
 | default | 
| 
 | overridedefault | 
| 
 | pure virtual | 
Implemented in CallbackMessage.
| bool MessageManager::MessageBase::post | ( | ) |