diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-06-25 21:15:55 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-06-25 21:15:55 +0000 |
commit | 3f26c19b0b7a9fa73c58189788972ea43b72f014 (patch) | |
tree | 8f34928a267fb35becdf939d21187a526f235869 /src/linkmessage.cpp | |
parent | 2b0fa89df615cb4789668014475ae64d99e773b5 (diff) | |
download | libbu++-3f26c19b0b7a9fa73c58189788972ea43b72f014.tar.gz libbu++-3f26c19b0b7a9fa73c58189788972ea43b72f014.tar.bz2 libbu++-3f26c19b0b7a9fa73c58189788972ea43b72f014.tar.xz libbu++-3f26c19b0b7a9fa73c58189788972ea43b72f014.zip |
I think the plugger and programchain are all up to date to work with the new
libbu++. The program chain may undergo heavy changes still, or be removed
entirely, but we need it for congo and squirrelmud, so here it is for a while
longer.
The TafWriter isn't much closer, you still only get the groups in the output.
Diffstat (limited to 'src/linkmessage.cpp')
-rw-r--r-- | src/linkmessage.cpp | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/linkmessage.cpp b/src/linkmessage.cpp new file mode 100644 index 0000000..abe113c --- /dev/null +++ b/src/linkmessage.cpp | |||
@@ -0,0 +1,43 @@ | |||
1 | #include "bu/linkmessage.h" | ||
2 | |||
3 | Bu::LinkMessage::LinkMessage( int nNewMsg ) | ||
4 | { | ||
5 | nMsg = nNewMsg; | ||
6 | } | ||
7 | |||
8 | Bu::LinkMessage::~LinkMessage() | ||
9 | { | ||
10 | } | ||
11 | |||
12 | /* | ||
13 | void LinkMessage::setBroadcast( bool bOn ) | ||
14 | { | ||
15 | bBroadcast = bOn; | ||
16 | } | ||
17 | |||
18 | bool LinkMessage::isBroadcast() | ||
19 | { | ||
20 | return bBroadcast; | ||
21 | } | ||
22 | |||
23 | |||
24 | void LinkMessage::setFromID( int id ) | ||
25 | { | ||
26 | nFromLinkID = id; | ||
27 | } | ||
28 | |||
29 | int LinkMessage::getFromID() | ||
30 | { | ||
31 | return nFromLinkID; | ||
32 | } | ||
33 | |||
34 | void LinkMessage::setToID( int id ) | ||
35 | { | ||
36 | nTargetLinkID = id; | ||
37 | } | ||
38 | |||
39 | int LinkMessage::getToID() | ||
40 | { | ||
41 | return nTargetLinkID; | ||
42 | } | ||
43 | */ | ||