Ignore:
Timestamp:
May 28, 2007, 10:38:18 PM (17 years ago)
Author:
rosiere
Message:

Class Position qui encapsule la génération des fichiers de positions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Interfaces.h

    r29 r31  
    3030  {
    3131    // -----[ fields ]----------------------------------------------------
    32   private   : list<Interface>       _list_interface;
     32  private   : list<Interface>     * _list_interface;
    3333
    3434    // -----[ methods ]---------------------------------------------------
    3535  public    :                       Interfaces            (void);
    36 
     36  public    :                       Interfaces            (const Interfaces & interfaces);
    3737  public    :                       ~Interfaces           ();
    3838
    39   public    : void                  set_interface         (Interface interface);
    40   public    : string                get_interface         (void);
     39  public    : Interface *           set_interface         (string         name        ,
     40                                                           direction_t    direction   ,
     41                                                           localisation_t localisation);
     42  public    : Interface *           set_interface         (string         name        ,
     43                                                           direction_t    direction   ,
     44                                                           localisation_t localisation,
     45                                                           string         comment     );
     46  private   : string                get_interface         (void);
    4147
    4248#ifdef VHDL
     
    4753#endif
    4854
     55  public    : Interface  *          find_interface        (string name);
     56
    4957  public    : XML                   toXML                 (void);
    50 
     58#ifdef POSITION
     59  public    : XML                   toXML_mapping         (void);
     60#endif
    5161  public    : friend ostream&       operator<<            (ostream& output_stream,
    5262                                                           morpheo::behavioural::Interfaces & x);
Note: See TracChangeset for help on using the changeset viewer.