diff options
Diffstat (limited to '')
-rw-r--r-- | src/linkmessage.cpp | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/linkmessage.cpp b/src/linkmessage.cpp new file mode 100644 index 0000000..ce838f5 --- /dev/null +++ b/src/linkmessage.cpp | |||
@@ -0,0 +1,53 @@ | |||
1 | /*************************************************************************** | ||
2 | * Copyright (C) 2003 by Mike Buland * | ||
3 | * eichlan@yf-soft.com * | ||
4 | * * | ||
5 | * This program is free software; you can redistribute it and/or modify * | ||
6 | * it under the terms of the GNU General Public License as published by * | ||
7 | * the Free Software Foundation; either version 2 of the License, or * | ||
8 | * (at your option) any later version. * | ||
9 | ***************************************************************************/ | ||
10 | #include "linkmessage.h" | ||
11 | #include <string.h> | ||
12 | |||
13 | LinkMessage::LinkMessage( int nNewMsg ) | ||
14 | { | ||
15 | nMsg = nNewMsg; | ||
16 | } | ||
17 | |||
18 | LinkMessage::~LinkMessage() | ||
19 | { | ||
20 | } | ||
21 | |||
22 | /* | ||
23 | void LinkMessage::setBroadcast( bool bOn ) | ||
24 | { | ||
25 | bBroadcast = bOn; | ||
26 | } | ||
27 | |||
28 | bool LinkMessage::isBroadcast() | ||
29 | { | ||
30 | return bBroadcast; | ||
31 | } | ||
32 | |||
33 | |||
34 | void LinkMessage::setFromID( int id ) | ||
35 | { | ||
36 | nFromLinkID = id; | ||
37 | } | ||
38 | |||
39 | int LinkMessage::getFromID() | ||
40 | { | ||
41 | return nFromLinkID; | ||
42 | } | ||
43 | |||
44 | void LinkMessage::setToID( int id ) | ||
45 | { | ||
46 | nTargetLinkID = id; | ||
47 | } | ||
48 | |||
49 | int LinkMessage::getToID() | ||
50 | { | ||
51 | return nTargetLinkID; | ||
52 | } | ||
53 | */ | ||