|
User Documentation |
|
Centre for Vision, Speech & Signal Processing |
Comments:
SMALL OBJECT.
Parent Classes:
Variables:
Methods:
- MsgPipeC(int nMaxSize = 10)
-
Default constructor.
- MsgPipeC(const MsgPipeC<T> &)
-
- ~MsgPipeC()
-
Destructor.
- void Put(const T & Data)
-
Put data into queue.
- BooleanT TryPut(const T & Data)
-
Try an put data in queue if there's space.
Ret:TRUE = Data in queue. Ret:FALSE = data not in queue.
- T Get(void)
-
Get data from queue.
- BooleanT TryGet(T & Data)
-
Try and get data from queue.
Ret:FALSE = No data available.
- BooleanT IsElm(void)
-
Is there data in the queue ?
- int Size(void)
-
How much data is there in the queue.
- void Empty()
-
Empty pipe of all its contents.
- void Dump(void) const
-
Dump contents to stdout.
- IntT N() const
-
Get size of pipe.
|
Programmer:Charles Galambos, Documentation by CxxDoc: Tue Mar 20 10:48:08 2001
|