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/old/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/old/linkmessage.cpp')
| -rw-r--r-- | src/old/linkmessage.cpp | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/src/old/linkmessage.cpp b/src/old/linkmessage.cpp deleted file mode 100644 index cf3df42..0000000 --- a/src/old/linkmessage.cpp +++ /dev/null | |||
| @@ -1,44 +0,0 @@ | |||
| 1 | #include "linkmessage.h" | ||
| 2 | #include <string.h> | ||
| 3 | |||
| 4 | LinkMessage::LinkMessage( int nNewMsg ) | ||
| 5 | { | ||
| 6 | nMsg = nNewMsg; | ||
| 7 | } | ||
| 8 | |||
| 9 | LinkMessage::~LinkMessage() | ||
| 10 | { | ||
| 11 | } | ||
| 12 | |||
| 13 | /* | ||
| 14 | void LinkMessage::setBroadcast( bool bOn ) | ||
| 15 | { | ||
| 16 | bBroadcast = bOn; | ||
| 17 | } | ||
| 18 | |||
| 19 | bool LinkMessage::isBroadcast() | ||
| 20 | { | ||
| 21 | return bBroadcast; | ||
| 22 | } | ||
| 23 | |||
| 24 | |||
| 25 | void LinkMessage::setFromID( int id ) | ||
| 26 | { | ||
| 27 | nFromLinkID = id; | ||
| 28 | } | ||
| 29 | |||
| 30 | int LinkMessage::getFromID() | ||
| 31 | { | ||
| 32 | return nFromLinkID; | ||
| 33 | } | ||
| 34 | |||
| 35 | void LinkMessage::setToID( int id ) | ||
| 36 | { | ||
| 37 | nTargetLinkID = id; | ||
| 38 | } | ||
| 39 | |||
| 40 | int LinkMessage::getToID() | ||
| 41 | { | ||
| 42 | return nTargetLinkID; | ||
| 43 | } | ||
| 44 | */ | ||
