Ignore:
Timestamp:
Apr 15, 2008, 8:40:01 PM (16 years ago)
Author:
rosiere
Message:
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/Environment/Queue/include/Queue.h

    • Property svn:keywords set to Id
    r80 r81  
    6161      // *****[ pop ]*****
    6262      // read the queue, and update the pointer
    63     public : virtual T    pop  ()             {return T();};
     63    public : virtual T    pop  ()             = 0;
    6464
    6565      // *****[ pop ]*****
    6666      // read the queue, and update the pointer
    67     public : virtual T    pop  (uint32_t num) {return T();};
     67    public : virtual T    pop  (uint32_t num) = 0;
    6868
    6969      // *****[ push ]*****
    7070      // Push a new value (they must have a slot free)
    71     public : virtual bool push (T val)        {return false;};
     71    public : virtual bool push (T val)        = 0;
    7272 
    7373    }; // Queue
Note: See TracChangeset for help on using the changeset viewer.