Changeset 48 for branches/clutter-experiments/document.hh
- Timestamp:
- 01/20/09 18:14:04 (3 years ago)
- Files:
-
- 1 modified
-
branches/clutter-experiments/document.hh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/clutter-experiments/document.hh
r47 r48 9 9 namespace pdfcube { 10 10 11 /** 12 * @brief A document of pdfcube::page elements made from a 13 * PopplerDocument object. 14 */ 11 15 class document 12 16 { 13 17 public: 18 /** @brief Ctor. */ 14 19 document(PopplerDocument* doc) 15 20 : doc_m(doc), … … 20 25 } 21 26 27 /** 28 * @brief Returns ii-th page. 29 */ 22 30 pdfcube::page& 23 31 page(int ii) 24 32 { return *page_m[ii]; } 25 33 34 /** 35 * @brief Returns ii-th page, const version. 36 */ 26 37 const pdfcube::page& 27 38 page(int ii) const 28 39 { return *page_m[ii]; } 29 40 41 /** 42 * @brief Returns number of pages. 43 */ 30 44 int 31 45 n_pages() const

