Creates concrete versions for Eo wrappers. More...
Public Member Functions | |
concrete (Eo *eo) | |
Class constructor. More... | |
concrete () | |
Default constructor. More... | |
~concrete () | |
Class destructor. | |
concrete (concrete const &other) | |
concrete (concrete &&other) | |
concrete & | operator= (concrete const &other) |
Assignment operator. | |
concrete & | operator= (concrete &&other) |
Eo * | _eo_ptr () const |
Return a pointer to the EO Object stored in this instance. More... | |
Eo * | _release () |
Releases the reference from this concrete object and return the pointer to the EO Object stored in this instance. More... | |
void | _reset (Eo *_ptr=nullptr) |
Reset the current pointer to reference a new Eo object. | |
operator bool () const | |
Protected Attributes | |
Eo * | _eo_raw |
The opaque EO Object. | |
Creates concrete versions for Eo wrappers.
This class creates the concrete version of all C++ Eo wrappers. It holds the Eo pointer that is used on all operations and provides some functions for manipulating it.
|
inlineexplicit |
Class constructor.
eo | The EO Object. |
efl::eo::concrete constructors semantics are that of stealing the EO Object lifecycle management. Its constructors do not increment the EO reference counter but the destructors do decrement.
|
inline |
Default constructor.
Constructs a NULL initialized efl::eo::concrete object.
Referenced by ~concrete().
|
inline |
Return a pointer to the EO Object stored in this instance.
References _eo_raw.