source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Priority/include/Types.h @ 88

Last change on this file since 88 was 88, checked in by rosiere, 15 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 611 bytes
Line 
1#ifndef morpheo_behavioural_generic_priority_Types_h
2#define morpheo_behavioural_generic_priority_Types_h
3
4/*
5 * $Id: Types.h 88 2008-12-10 18:31:39Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Behavioural/include/Types.h"
12
13namespace morpheo {
14namespace behavioural {
15namespace generic {
16namespace priority {
17
18  class select_t
19  {
20  public : uint32_t grp ;
21  public : uint32_t elt;
22   
23  public : select_t (uint32_t grp,
24                     uint32_t elt)
25    {
26      this->grp = grp;
27      this->elt = elt;
28    }
29  };
30
31}; // end namespace priority
32}; // end namespace generic
33}; // end namespace behavioural
34}; // end namespace morpheo             
35
36#endif
Note: See TracBrowser for help on using the repository browser.