~ubuntu-branches/ubuntu/natty/koffice/natty-security

« back to all changes in this revision

Viewing changes to kplato/libs/kernel/kptnode.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2011-01-19 12:29:32 UTC
  • mfrom: (0.17.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110119122932-8acdswnc4rc2owxq
Tags: 1:2.3.1-0ubuntu1
* New upstream release
* Add kubuntu_03_libwpg_02.diff from Fedora for libwpg 0.2 support,
  add back libwpg-dev build-depend
* Depend on libwpd-dev not libwpd8-dev
* Remove kubuntu_02_kpresenterpart.diff now upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
332
332
    virtual double budgetedCostPerformed( const QDate &, long = CURRENTSCHEDULE ) const { return 0.0; };
333
333
 
334
334
    /// Return map of Budgeted Cost of Work Scheduled pr day
335
 
    virtual EffortCostMap bcwsPrDay( long id = CURRENTSCHEDULE ) const;
 
335
    virtual EffortCostMap bcwsPrDay( long id = CURRENTSCHEDULE, EffortCostCalculationType type = ECCT_All ) const;
336
336
    /// Budgeted Cost of Work Scheduled
337
337
    virtual double bcws( const QDate &/*date*/, long id = CURRENTSCHEDULE ) const { Q_UNUSED(id); return 0.0; }
338
338
 
339
339
    /// Return map of Budgeted Cost of Work Scheduled pr day (also includes bcws pr day)
340
 
    virtual EffortCostMap bcwpPrDay( long id = CURRENTSCHEDULE ) const;
 
340
    virtual EffortCostMap bcwpPrDay( long id = CURRENTSCHEDULE, EffortCostCalculationType type = ECCT_All ) const;
341
341
    /// Budgeted Cost of Work Performed
342
342
    virtual double bcwp( long id ) const { Q_UNUSED(id); return 0.0; }
343
343
    /// Budgeted Cost of Work Performed ( up to @p date )
344
344
    virtual double bcwp( const QDate &/*date*/, long id = CURRENTSCHEDULE ) const { Q_UNUSED(id); return 0.0; }
345
345
    
346
346
    /// Return a map of Actual effort and Cost of Work Performed
347
 
    virtual EffortCostMap acwp( long id = CURRENTSCHEDULE ) const;
 
347
    virtual EffortCostMap acwp( long id = CURRENTSCHEDULE, EffortCostCalculationType type = ECCT_All ) const;
348
348
    /// Return Actual effort and Cost of Work Performed upto @date
349
349
    virtual EffortCost acwp( const QDate &date, long id = CURRENTSCHEDULE ) const;
350
350