Show
Ignore:
Timestamp:
11/08/09 22:07:31 (15 years ago)
Author:
mido
Message:

definitivne odstraneno epdf2mpdf a mepdf, rozpravano zacleneni testu mmixu pod pdf_harness

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/doc/tutorial/memory_management.dox

    r613 r711  
    107107 
    108108\code 
    109 class mepdf : public mpdf 
    110 { 
    111         shared_ptr<epdf> iepdf; 
     109class mratio: public pdf { 
     110protected: 
     111        shared_ptr<epdf> den; 
    112112public: 
    113         mepdf (shared_ptr<epdf> em) { 
    114                 iepdf = em; 
     113        mratio ( const epdf* nom0, const RV &rv, bool copy = false ) { 
     114                // build denominator 
     115                den = nom0->marginal ( rvc ); 
    115116\endcode 
    116117