diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-10-03 12:09:50 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2011-10-03 12:10:12 +0200 |
commit | f4ff26c955729f8b068c64fff806216eb6e34bd4 (patch) | |
tree | 577a756353ac09f53e818b8f19292d3ce6326e12 /src/tool_select.h | |
parent | 9a5060c094813d908d4c9ef7b8631916939bb53d (diff) |
Use dispatch tables for tool functions
Diffstat (limited to 'src/tool_select.h')
-rw-r--r-- | src/tool_select.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/tool_select.h b/src/tool_select.h new file mode 100644 index 0000000..93aeb15 --- /dev/null +++ b/src/tool_select.h @@ -0,0 +1,34 @@ +/* + * tool_select.h + * + * Colloquium - A tiny presentation program + * + * Copyright (c) 2011 Thomas White <taw@bitwiz.org.uk> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +#ifndef TOOL_SELECT_H +#define TOOL_SELECT_H + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + + +extern struct toolinfo *initialise_select_tool(void); + + +#endif /* TOOL_SELECT_H */ |