From: Yurii R. <yr...@us...> - 2003-02-03 09:06:55
|
Update of /cvsroot/eas-dev/eas-dev/libs/libsxmlstream/include In directory sc8-pr-cvs1:/tmp/cvs-serv5135/libs/libsxmlstream/include Modified Files: sxmlhandler.hxx Log Message: minor changes in build process; `logger' component rewritten to 'handle' log records; compiles but not tested yet. sigslot library added to common includes. another minor changes Index: sxmlhandler.hxx =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/libs/libsxmlstream/include/sxmlhandler.hxx,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- sxmlhandler.hxx 3 Feb 2003 06:30:47 -0000 1.1 +++ sxmlhandler.hxx 3 Feb 2003 09:06:52 -0000 1.2 @@ -22,11 +22,26 @@ #define _LIBSXMLSTREAM_SXMLHANDLER_HXX_ #include <sxml.hxx> +#include <sxmlcont.hxx> + +#include <sigslot.h> using namespace std; +using namespace sigslot; namespace openeas { namespace sxmlstream { + +class SXmlHandler: public has_slots<> +{ + public: + SXmlHandler() {}; + ~SXmlHandler() {}; + + void handle(const SXmlNode& node); + void handle_cc(const SXmlNode& node, SXmlCont& cc); +}; + }; }; #endif /* _LIBSXMLSTREAM_SXMLHANDLER_HXX_ */ |