source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/src/Coord_accessors.cpp @ 99

Last change on this file since 99 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: 508 bytes
Line 
1/*
2 *
3 * [desc.]
4 */
5#include "Tools/Viewer/Bdd/include/Coord.h"
6
7namespace morpheo{
8namespace tools{
9namespace viewer{
10namespace bdd{     
11
12  int Coord::get_size_x(){return size_x;}
13  int Coord::get_size_y(){return size_y;}
14
15  int Coord::get_hg_x()
16  {
17    return pos_hg_x;
18  }
19 
20  int Coord::get_hg_y()
21  {
22    return pos_hg_y;
23  }
24 
25  int Coord::get_bd_x()
26  {
27    return pos_bd_x;
28  }
29 
30  int Coord::get_bd_y()
31  {
32    return pos_bd_y;
33  }
34
35 
36};//end bdd
37};//end viewer
38};//end tools
39};//end morpheo
Note: See TracBrowser for help on using the repository browser.