aboutsummaryrefslogtreecommitdiff
path: root/week10/Exercise09/IntPacket.h
blob: be88bce1c6b45df38842cba434c0ce4662f40019 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include "CommunicationPacket.h"

class IntPacket : CommunicationPacket {
	int data;

public:
	IntPacket();
	IntPacket(unsigned startAddress, unsigned endAddress, int data);
};