Fix memory leak issues
[platform/core/uifw/anthy.git] / anthy / prediction.h
1 #ifndef __prediction_h_included__
2 #define __prediction_h_included__
3
4 #include "xstr.h"
5
6 struct prediction_t {
7   int timestamp;
8   /* Æɤߠ*/
9   xstr *src_str;
10   /* ·ë²Ì¤Îʸ»úÎó */
11   xstr *str;
12 };
13
14 /* Í½Â¬¤µ¤ì¤¿Ê¸»úÎó¤ò³ÊǼ¤¹¤ë */
15 int anthy_traverse_record_for_prediction(xstr*, struct prediction_t*);
16
17
18 #endif