diff options
| author | Ted Gould <ted@gould.cx> | 2006-03-29 05:38:09 +0000 |
|---|---|---|
| committer | gouldtj <gouldtj@users.sourceforge.net> | 2006-03-29 05:38:09 +0000 |
| commit | aecc62e0bfca60ae28139c30868e4b9eb456cf41 (patch) | |
| tree | 17a5b88eb27f082de8617f34d23364cb1facac86 /src | |
| parent | non-localizable string (diff) | |
| download | inkscape-aecc62e0bfca60ae28139c30868e4b9eb456cf41.tar.gz inkscape-aecc62e0bfca60ae28139c30868e4b9eb456cf41.zip | |
r10919@tres: ted | 2006-02-13 09:37:13 -0800
Adding in comments for accessor functions
(bzr r332)
Diffstat (limited to 'src')
| -rw-r--r-- | src/extension/effect.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/extension/effect.h b/src/extension/effect.h index 59953c7ad..d93dc5567 100644 --- a/src/extension/effect.h +++ b/src/extension/effect.h @@ -65,8 +65,10 @@ public: virtual bool check (void); bool prefs (Inkscape::UI::View::View * doc); void effect (Inkscape::UI::View::View * doc); + /** \brief Accessor function for a pointer to the verb */ Inkscape::Verb * get_verb (void) { return &_verb; }; + /** \brief Static function to get the last effect used */ static Effect * get_last_effect (void) { return _last_effect; }; static void set_last_effect (Effect * in_effect); |
