source: branches/FACT++_lidctrl_usb/drive/PixClient.h@ 19364

Last change on this file since 19364 was 18618, checked in by tbretz, 10 years ago
Copied files from Mars and Cosy to compile toold which fit our current drivectrl.
File size: 346 bytes
Line 
1#ifndef COSY_PixClient
2#define COSY_PixClient
3
4#ifdef __CINT__
5struct timeval;
6#else
7#include <unistd.h>
8#include <sys/time.h>
9#endif
10
11
12typedef unsigned char byte;
13
14class PixClient
15{
16public:
17 virtual ~PixClient() { }
18 virtual void ProcessFrame(const unsigned long n,
19 byte *img, struct timeval *tm);
20};
21
22#endif
Note: See TracBrowser for help on using the repository browser.