source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/include/Coord.h @ 105

Last change on this file since 105 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: 655 bytes
Line 
1#ifndef morpheo_tools_viewer_bdd_Coord_h
2#define morpheo_tools_viewer_bdd_Coord_h
3
4#include <iostream>
5
6 
7
8using namespace std;
9namespace morpheo{
10namespace tools{
11namespace viewer{
12namespace bdd{     
13
14  class Coord
15    {
16    private:
17      int pos_hg_x,pos_hg_y;
18      int pos_bd_x,pos_bd_y;
19      int size_y,size_x;
20     
21    protected:
22     
23    public:
24      int get_hg_x();
25      int get_hg_y();
26      int get_bd_x();
27      int get_bd_y();
28      int get_size_x();
29      int get_size_y();
30      Coord(int x,int y,int lx,int ly);
31     
32      ~Coord();
33     
34    };//end class Coord
35
36};//end bdd
37};//end viewer
38};//end tools
39};//end morpheo
40
41#endif
Note: See TracBrowser for help on using the repository browser.