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 51 of file isotp.h.

Constructor & Destructor Documentation

◆ CanRxMessage() [1/3]

CanRxMessage::CanRxMessage ( )
inline

Definition at line 53 of file isotp.h.

53{}

◆ CanRxMessage() [2/3]

CanRxMessage::CanRxMessage ( const CANRxFrame f)
inline

Definition at line 55 of file isotp.h.

55 {
56 frame = f;
57 }
CANRxFrame frame
Definition isotp.h:68

◆ CanRxMessage() [3/3]

CanRxMessage::CanRxMessage ( const CanRxMessage msg)
inline

Definition at line 59 of file isotp.h.

59: frame(msg.frame) {}

Member Function Documentation

◆ operator=()

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

Definition at line 61 of file isotp.h.

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

Field Documentation

◆ frame

CANRxFrame CanRxMessage::frame

Definition at line 68 of file isotp.h.

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


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