source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_create_counter.cpp @ 146

Last change on this file since 146 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 292 bytes
Line 
1#ifdef STATISTICS
2#include "Behavioural/include/Stat.h"
3
4namespace morpheo {
5namespace behavioural {
6  counter_t * Stat::create_counter (std::string varname, std::string unit, std::string description)
7  {
8    return alloc_operand (TYPE_COUNTER, varname, unit, description);
9  }
10
11};
12};
13#endif
Note: See TracBrowser for help on using the repository browser.