Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of uvchost by
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
