Ecore audio: Remove redundant constructor/destructor.

There's no need to have a constructor/destructor that just
do the super call.
This commit is contained in:
Tom Hacohen 2015-05-19 10:30:11 +01:00
parent 21106fd5f0
commit e7ed0bfced
4 changed files with 0 additions and 22 deletions

View File

@ -2,7 +2,6 @@ class Ecore_Audio_In_Sndfile (Ecore_Audio_In)
{
eo_prefix: ecore_audio_obj_in_sndfile;
implements {
Eo.Base.constructor;
Eo.Base.destructor;
Ecore_Audio.source.set;
Ecore_Audio.source.get;

View File

@ -194,13 +194,6 @@ _ecore_audio_in_sndfile_ecore_audio_vio_set(Eo *eo_obj, Ecore_Audio_In_Sndfile_D
ea_obj->format = ECORE_AUDIO_FORMAT_AUTO;
}
EOLIAN static void
_ecore_audio_in_sndfile_eo_base_constructor(Eo *eo_obj, Ecore_Audio_In_Sndfile_Data *_pd EINA_UNUSED)
{
eo_do_super(eo_obj, MY_CLASS, eo_constructor());
}
EOLIAN static void
_ecore_audio_in_sndfile_eo_base_destructor(Eo *eo_obj, Ecore_Audio_In_Sndfile_Data *obj)
{

View File

@ -215,18 +215,6 @@ _audio_io_proc_cb(AudioObjectID obj_id EINA_UNUSED,
* Eo API *
*============================================================================*/
EOLIAN static void
_ecore_audio_out_core_audio_eo_base_constructor(Eo *obj, Ecore_Audio_Out_Core_Audio_Data *sd EINA_UNUSED)
{
eo_do_super(obj, MY_CLASS, eo_constructor());
}
EOLIAN static void
_ecore_audio_out_core_audio_eo_base_destructor(Eo *obj, Ecore_Audio_Out_Core_Audio_Data *sd EINA_UNUSED)
{
eo_do_super(obj, MY_CLASS, eo_destructor());
}
EOLIAN static void
_ecore_audio_out_core_audio_ecore_audio_volume_set(Eo *obj, Ecore_Audio_Out_Core_Audio_Data *sd EINA_UNUSED, double volume)
{

View File

@ -2,8 +2,6 @@ class Ecore_Audio_Out_Core_Audio (Ecore_Audio_Out)
{
eo_prefix: ecore_audio_obj_out_core_audio;
implements {
Eo.Base.constructor;
Eo.Base.destructor;
Ecore_Audio.volume.set;
Ecore_Audio_Out.input_attach;
Ecore_Audio_Out.input_detach;