truck-code
jbus.h
Go to the documentation of this file.
1 
14 #ifndef SRC_JBUS_JBUS_H_
15 #define SRC_JBUS_JBUS_H_
16 
17 #include "j1939_struct.h"
18 #include <string>
19 
20 
23 #define JBUS_INTERVAL_MSECS 5
24 
25 
33 class JBus
34 {
35 public:
55  virtual int init(std::string filename, int flags, void *p_other);
56 
74  virtual int receive(int fd, j1939_pdu_typ *pdu, int *extended, int *slot);
75 
90  virtual int close_conn(int *pfd);
91 
93  virtual ~JBus();
94 };
95 
96 
97 #endif /* SRC_JBUS_JBUS_H_ */
Definition: jbus.h:33
virtual int init(std::string filename, int flags, void *p_other)
Definition: jbus.cpp:22
virtual ~JBus()
Definition: jbus.cpp:94
virtual int receive(int fd, j1939_pdu_typ *pdu, int *extended, int *slot)
Definition: jbus.cpp:76
virtual int close_conn(int *pfd)
Definition: jbus.cpp:52
Definition: j1939_struct.h:32