diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-05-01 17:11:04 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-05-01 17:11:04 +0000 |
commit | f7a9549bd6ad83f2e0bceec9cddacfa5e3f84a54 (patch) | |
tree | 53cec4864776e07950e3c72f2a990a1017d08045 /src/linkmessage.cpp | |
download | libbu++-f7a9549bd6ad83f2e0bceec9cddacfa5e3f84a54.tar.gz libbu++-f7a9549bd6ad83f2e0bceec9cddacfa5e3f84a54.tar.bz2 libbu++-f7a9549bd6ad83f2e0bceec9cddacfa5e3f84a54.tar.xz libbu++-f7a9549bd6ad83f2e0bceec9cddacfa5e3f84a54.zip |
libbu++ is finally laid out the way it should be, trunk, branches, and tags.
Diffstat (limited to 'src/linkmessage.cpp')
-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 | */ | ||