aboutsummaryrefslogtreecommitdiffstats
path: root/Messages.st
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-11-17 16:56:10 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-11-17 16:56:10 +0100
commitf8b0fa8e82b267927735f8daf41f4d56965ae760 (patch)
tree1a587a9e386732ed776496e7b5e7078caa568797 /Messages.st
parentf236686e22904165c56810c657908a13fb53048e (diff)
GSM48: Move the GSM48 methods to this new file.
Diffstat (limited to 'Messages.st')
-rw-r--r--Messages.st41
1 files changed, 1 insertions, 40 deletions
diff --git a/Messages.st b/Messages.st
index 45ea9f9..b32e42e 100644
--- a/Messages.st
+++ b/Messages.st
@@ -1,5 +1,4 @@
-"Messages for GSM04.08"
-
+"General IE based message handling"
Object subclass: IEMessage [
| ies type |
@@ -33,41 +32,3 @@ Object subclass: IEMessage [
]
-Object subclass: LocationUpdatingRequest [
- | imsi tmsi |
-
- LocationUpdatingRequest class >> initWithIMSI: aImsi [
- ^ (self new)
- imsi: aImsi;
- yourself
- ]
-
- LocationUpdatingRequest class >> initWithTMSI: aTmsi [
- ^ (self new)
- tmsi: aTmsi;
- yourself
- ]
-
- toMessage [
- ]
-]
-
-Object subclass: LocationUpdatingAccept [
- toMessage [
- ]
-]
-
-Object subclass: LocationUpdatingReject [
- toMessage [
- ]
-]
-
-Object subclass: IdentityRequest [
- toMessage [
- ]
-]
-
-Object subclass: IdentityResponse [
- toMessage [
- ]
-]