diff options
author | kostja@bodhi.(none) <> | 2007-08-15 17:43:08 +0400 |
---|---|---|
committer | kostja@bodhi.(none) <> | 2007-08-15 17:43:08 +0400 |
commit | 91fe15bb9d9fd8e6788dc8b2180c57c6a432faad (patch) | |
tree | 0f4ea9d823335095b2d13f142391ac69213c2e77 /sql/events.h | |
parent | 9bf39c6fe9b4db1da9c0b50339d58eb0aa198243 (diff) | |
download | mariadb-git-91fe15bb9d9fd8e6788dc8b2180c57c6a432faad.tar.gz |
Fix doxygen warnings.
Diffstat (limited to 'sql/events.h')
-rw-r--r-- | sql/events.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sql/events.h b/sql/events.h index 1b99b072fd7..078ab63041b 100644 --- a/sql/events.h +++ b/sql/events.h @@ -15,9 +15,11 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* +/** @file A public interface of Events Scheduler module. + @defgroup Event Scheduler + @{ */ class Event_parse_data; @@ -42,7 +44,7 @@ int sortcmp_lex_string(LEX_STRING s, LEX_STRING t, CHARSET_INFO *cs); /** - @class Events -- a facade to the functionality of the Event Scheduler. + @brief A facade to the functionality of the Event Scheduler. Every public operation against the scheduler has to be executed via the interface provided by a static method of this class. No instance of this @@ -152,5 +154,8 @@ private: void operator=(Events &); }; +/** + @} (end of group Event Scheduler) +*/ #endif /* _EVENT_H_ */ |