forked from VilYusupov/CANSnifer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CANMSGRequest.cpp
31 lines (28 loc) · 959 Bytes
/
CANMSGRequest.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
* CANMSGRequest.cpp
*
* Created on: 28.10.2011
* Author: Âèëü
*/
#include "CANMSGRequest.h"
#include "Logger.h"
CANMSGRequest::CANMSGRequest() {
// TODO Auto-generated constructor stub
}
CANMSGRequest::CANMSGRequest(std::auto_ptr<iCANMSG> can_msg){
Logger::GetLogger()->PutLine("CANMSGRequest::CANMSGRequest(std::auto_ptr<iCANMSG> can_msg","hay");
_can_msg = can_msg;
Logger::GetLogger()->PutLine("CANMSGRequest::CANMSGRequest(std::auto_ptr<iCANMSG> can_msg","hay1");
}
void CANMSGRequest::SetCANMSG(std::auto_ptr<iCANMSG> can_msg){
Logger::GetLogger()->PutLine("void CANMSGRequest::SetCANMSG(std::auto_ptr<iCANMSG> can_msg)","hay");
_can_msg = can_msg;
}
CANMSGRequest::CANMSGRequest(const CANMSGRequest &me){
CANMSGRequest m = me;
Logger::GetLogger()->PutLine("CANMSGRequest::CANMSGRequest(const CANMSGRequest &me)","hay");
this->_can_msg = m._can_msg;
}
CANMSGRequest::~CANMSGRequest() {
// TODO Auto-generated destructor stub
}