| Index: memconf/config.h
|
| diff --git a/memconf/config.h b/memconf/config.h
|
| index f4253f1647901841804d53292ed36a274cfc8f90..33624a7620ee3cd54f3408437e9edc7e826be1d5 100644
|
| --- a/memconf/config.h
|
| +++ b/memconf/config.h
|
| @@ -21,6 +21,7 @@
|
| #define MEMCONF_CONFIG_H_
|
|
|
| #include <map>
|
| +#include <set>
|
| #include <string>
|
|
|
| #include <ibus.h>
|
| @@ -30,6 +31,8 @@ struct IBusConfigMemConf {
|
| // We have to use pointer type here for |entries| since g_object_new() uses
|
| // malloc rather than new to create IBusConfigMemConf object.
|
| std::map<std::string, GValue*>* entries;
|
| + std::set<std::string>* unread;
|
| + std::set<std::string>* unwritten;
|
| };
|
|
|
| IBusConfigMemConf* ibus_config_memconf_new(IBusConnection* connection);
|
|
|