tasn pushed a commit to branch master. http://git.enlightenment.org/bindings/cxx/eflxx.git/commit/?id=501fb1a064d612d9d151af2723db5bd4ec110c35
commit 501fb1a064d612d9d151af2723db5bd4ec110c35 Author: Andreas Volz <[email protected]> Date: Sat Jan 1 21:50:59 2011 +0000 doc SVN revision: 55795 --- edjexx/include/edjexx/Part.h | 6 ++++++ evasxx/src/Object.cpp | 3 +++ 2 files changed, 9 insertions(+) diff --git a/edjexx/include/edjexx/Part.h b/edjexx/include/edjexx/Part.h index a78caa8..8f5b1a3 100644 --- a/edjexx/include/edjexx/Part.h +++ b/edjexx/include/edjexx/Part.h @@ -38,8 +38,14 @@ public: void swallow( Evasxx::Object* ); void unswallow( Evasxx::Object* ); + /*! + * @throw SwallowNotExistingException + */ Evasxx::Object &getSwallow (); + /*! + * @throw ExternalNotExistingException + */ Evasxx::Object &getExternalObject (); // TODO: wrap Param? diff --git a/evasxx/src/Object.cpp b/evasxx/src/Object.cpp index 2c02059..5d3e9cb 100644 --- a/evasxx/src/Object.cpp +++ b/evasxx/src/Object.cpp @@ -17,6 +17,9 @@ namespace Evasxx { Object::Object () { // no need to call init() here as it has to be done by the child class! + + // TODO: think about makeing init private and call it from Object constructor + // in the current design there's no need to call from child... } Object::Object (Evas_Object *eo) --
