/* * Inkscape::Debug::Event - event for debug tracing * * Authors: * MenTaLguY * * Copyright (C) 2005 MenTaLguY * * Released under GNU GPL, read the file 'COPYING' for more information */ #ifndef SEEN_INKSCAPE_DEBUG_EVENT_H #define SEEN_INKSCAPE_DEBUG_EVENT_H #include #include "util/share.h" namespace Inkscape { namespace Debug { class Event { public: virtual ~Event() {} enum Category { CORE=0, XML, SPOBJECT, DOCUMENT, REFCOUNT, EXTENSION, OTHER }; enum { N_CATEGORIES=OTHER+1 }; struct PropertyPair { public: PropertyPair() {} PropertyPair(Util::shared_ptr n, Util::shared_ptr v) : name(n), value(v) {} PropertyPair(char const *n, Util::shared_ptr v) : name(Util::share_string(n)), value(v) {} PropertyPair(Util::shared_ptr n, char const *v) : name(n), value(Util::share_string(v)) {} PropertyPair(char const *n, char const *v) : name(Util::share_string(n)), value(Util::share_string(v)) {} Util::shared_ptr name; Util::shared_ptr value; }; static Category category() { return OTHER; } virtual Util::shared_ptr name() const=0; virtual unsigned propertyCount() const=0; virtual PropertyPair property(unsigned property) const=0; }; } } #endif /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :