Changeset 533 for trunk/lib


Ignore:
Timestamp:
Dec 26, 2007, 3:07:46 AM (16 years ago)
Author:
Peter Johansson
Message:

Adding a BlameStats to the StatsCollection?. Though BlameStats is not yet implemented but goes as a dummie (read ClassicStats?)

Location:
trunk/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/BlameStats.h

    r531 r533  
    4646
    4747  private:
    48     /// using compiler generated copy
    49 
    50     ///
    51     /// @brief adding a line to user from revision to the stats
    52     ///
    53     void add(const std::string& user, const u_int& revision,
    54              const Parser::line_type&);
    55 
    5648    void do_parse(const std::string&);
    5749
  • trunk/lib/StatsCollection.cc

    r532 r533  
    2424#include "StatsCollection.h"
    2525
     26#include "BlameStats.h"
    2627#include "ClassicStats.h"
    2728#include "Stats.h"
     
    4243  {
    4344    stats_["classic"] = new ClassicStats(path);
     45    stats_["blame"] = new BlameStats(path);
    4446  }
    4547
Note: See TracChangeset for help on using the changeset viewer.