#include <pdf_page.h>
Public Member Functions | |
SearchWordRecord () | |
SearchWordRecord (int word_idx, int start_idx, int end_idx) | |
~SearchWordRecord () | |
Data Fields | |
int | word_index |
int | start_char_index |
int | end_char_index |
Definition at line 97 of file pdf_page.h.
pdf::SearchWordRecord::SearchWordRecord | ( | ) | [inline] |
Definition at line 103 of file pdf_page.h.
00104 : word_index(0) 00105 , start_char_index(0) 00106 , end_char_index(0) 00107 {}
pdf::SearchWordRecord::SearchWordRecord | ( | int | word_idx, | |
int | start_idx, | |||
int | end_idx | |||
) | [inline] |
Definition at line 109 of file pdf_page.h.
00110 : word_index(word_idx) 00111 , start_char_index(start_idx) 00112 , end_char_index(end_idx) 00113 {}
pdf::SearchWordRecord::~SearchWordRecord | ( | ) | [inline] |
Definition at line 115 of file pdf_page.h.
Definition at line 101 of file pdf_page.h.
Definition at line 100 of file pdf_page.h.
Definition at line 99 of file pdf_page.h.