source: trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Stat_type.h @ 118

Last change on this file since 118 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: 505 bytes
Line 
1#ifdef STATISTICS
2#ifndef morpheo_behavioural_Stat_type_h
3#define morpheo_behavioural_Stat_type_h
4
5#include <string>
6#include <map>
7#include <utility>
8
9namespace morpheo {
10namespace behavioural {
11
12  typedef enum{TYPE_VARIABLE, TYPE_COUNTER} counter_type_t;
13
14  typedef double counter_t ;
15
16  typedef enum{add, sub, mul, div, inc, dec} operator_t;
17
18//typedef std::pair<operator_t, std::string> pair_operator_string_t;
19//typedef std::pair<std::string, operator_t> pair_string_operator_t;
20
21};
22};
23#endif
24#endif
Note: See TracBrowser for help on using the repository browser.