18 lines
No EOL
314 B
C
Executable file
18 lines
No EOL
314 B
C
Executable file
#ifndef I_ACQUISITION_MANAGER_H
|
|
#define I_ACQUISITION_MANAGER_H
|
|
|
|
#include "msg.h"
|
|
|
|
/**
|
|
* Get the number of produced messages.
|
|
*/
|
|
unsigned int getProducedCount(void);
|
|
|
|
/**
|
|
* Gets a message if any, otherwise waits for a message.
|
|
*/
|
|
MSG_BLOCK getMessage(void);
|
|
|
|
//TODO create message accessors prototype here.
|
|
|
|
#endif |