#ifndef __LISTS_H__ #define __LISTS_H__ struct value_type { int type; std::string str; long num; }; typedef std::vector idclist_t; #endif