source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/src/Component_alloc.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:keywords set to Id
File size: 423 bytes
Line 
1/*
2 *
3 * [desc.]
4 */
5#include "Tools/Viewer/Bdd/include/Component.h"
6
7namespace morpheo{
8namespace tools{
9namespace viewer{
10namespace bdd{     
11
12  Component::Component(string n, string t,int p_x,int p_y,int s_x,int s_y):ListePorts(){
13    name=n;
14    type=t ; 
15    pos_x=p_x;
16    pos_y=p_y;
17    size_x=s_x;
18    size_y=s_y;
19    signal=new QList<PortMap>();
20   
21  }
22
23
24};//end bdd
25};//end viewer
26};//end tools
27};//end morpheo
Note: See TracBrowser for help on using the repository browser.