Takao Aratani / uvchost

Dependents:   WebCamera_SD

Fork of uvchost by Norimasa Okamoto

usb/Usb_td.h

Committer:
va009039
Date:
2012-07-31
Revision:
0:b0f04c137829

File content as of revision 0:b0f04c137829:

#ifndef USB_TD_H
#define USB_TD_H
#include "UsbInc.h"
#include "usb_mem.h"

template <class T> 
class tdqueue {
public:
    tdqueue();
    int size();
    bool empty();
    T front();
    void pop();
    void push(T td);
private:
    T m_head;
    T m_tail;
};

HCTD* td_reverse(HCTD* td);
void test_td();

#endif //USB_TD_H