/* (C) 2003-2007 Willem Jan Hengeveld * Web: http://www.xs4all.nl/~itsme/ * http://wiki.xda-developers.com/ * * $Id: $ */ struct function_list : ListGenerator { bool operator() (idclist_t *l, value_t *argv) { } }; struct block_list : ListGenerator { bool operator() (idclist_t *l, value_t *argv) { } }; void init() { listtypes["functions"]= ListGeneratorPtr(new function_list); listtypes["blocks"]= ListGeneratorPtr(new block_list); }