Eo: Changed eo_prefix for base class to 'eo'.

This is better than eo_base, as it's super common.
This commit is contained in:
Tom Hacohen 2014-04-02 11:41:25 +01:00
parent 35525a53e0
commit 1866909ba1
1 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
abstract Eo_Base () abstract Eo_Base ()
{ {
eo_prefix: eo;
constructors { constructors {
constructor { constructor {
/*@ Call the object's constructor. /*@ Call the object's constructor.
@ -75,7 +77,7 @@ Prevents event callbacks from being called for the object. */
/*@ Call the object's destructor. /*@ Call the object's destructor.
Should not be used with #eo_do. Only use it with #eo_do_super. */ Should not be used with #eo_do. Only use it with #eo_do_super. */
} }
data_set { key_data_set {
/*@ Set generic data to object. */ /*@ Set generic data to object. */
params { params {
@in const char* key; /*@ the key associated with the data */ @in const char* key; /*@ the key associated with the data */
@ -83,7 +85,7 @@ Should not be used with #eo_do. Only use it with #eo_do_super. */
@in eo_base_data_free_func free_func; /*@ the func to free data with (NULL means */ @in eo_base_data_free_func free_func; /*@ the func to free data with (NULL means */
} }
} }
data_get { key_data_get {
/*@ Get generic data from object. */ /*@ Get generic data from object. */
params { params {
@in const char* key; /*@ the key associated with the data */ @in const char* key; /*@ the key associated with the data */
@ -102,7 +104,7 @@ Should not be used with #eo_do. Only use it with #eo_do_super. */
/*@ thaw events of object. /*@ thaw events of object.
Lets event callbacks be called for the object. */ Lets event callbacks be called for the object. */
} }
data_del { key_data_del {
/*@ Del generic data from object. */ /*@ Del generic data from object. */
params { params {
@in const char* key; /*@ the key associated with the data */ @in const char* key; /*@ the key associated with the data */