Show
Ignore:
Timestamp:
01/20/09 18:14:04 (3 years ago)
Author:
mirko
Message:

simplistic makefile

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/clutter-experiments/document.hh

    r47 r48  
    99namespace pdfcube { 
    1010 
     11  /** 
     12   * @brief A document of pdfcube::page elements made from a 
     13   * PopplerDocument object. 
     14   */ 
    1115  class document  
    1216  { 
    1317  public: 
     18    /** @brief Ctor. */ 
    1419    document(PopplerDocument* doc) 
    1520      : doc_m(doc),  
     
    2025    } 
    2126 
     27    /** 
     28     * @brief Returns ii-th page. 
     29     */ 
    2230    pdfcube::page&  
    2331    page(int ii)  
    2432    { return *page_m[ii]; } 
    2533 
     34    /** 
     35     * @brief Returns ii-th page, const version. 
     36     */ 
    2637    const pdfcube::page&  
    2738    page(int ii) const  
    2839    { return *page_m[ii]; } 
    2940 
     41    /** 
     42     * @brief Returns number of pages. 
     43     */ 
    3044    int  
    3145    n_pages() const