rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
Public Member Functions | Data Fields
CanRxMessage Class Reference

#include <isotp.h>

Collaboration diagram for CanRxMessage:
Collaboration graph
[legend]

Public Member Functions

 CanRxMessage ()
 
 CanRxMessage (const CANRxFrame &f)
 
 CanRxMessage (const CanRxMessage &msg)
 
CanRxMessageoperator= (const CanRxMessage &msg)
 

Data Fields

CANRxFrame frame
 

Detailed Description

Definition at line 49 of file isotp.h.

Constructor & Destructor Documentation

◆ CanRxMessage() [1/3]

CanRxMessage::CanRxMessage ( )
inline

Definition at line 51 of file isotp.h.

51{}

◆ CanRxMessage() [2/3]

CanRxMessage::CanRxMessage ( const CANRxFrame f)
inline

Definition at line 53 of file isotp.h.

53 {
54 frame = f;
55 }
CANRxFrame frame
Definition isotp.h:66

◆ CanRxMessage() [3/3]

CanRxMessage::CanRxMessage ( const CanRxMessage msg)
inline

Definition at line 57 of file isotp.h.

57: frame(msg.frame) {}

Member Function Documentation

◆ operator=()

CanRxMessage & CanRxMessage::operator= ( const CanRxMessage msg)
inline

Definition at line 59 of file isotp.h.

59 {
60 // full content copy
61 frame = msg.frame;
62 return *this;
63 }

Field Documentation

◆ frame

CANRxFrame CanRxMessage::frame

Definition at line 66 of file isotp.h.

Referenced by CanRxMessage(), operator=(), and CanTransport::receive().


The documentation for this class was generated from the following file: