summaryrefslogtreecommitdiff
path: root/gdb/gdbtk/library/data.itb
blob: 5cfc36b3faa4388ebbe194512a2cb816a86d196e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Data-type class implementations for GDBtk.
# Copyright 1997, 1998, 1999 Cygnus Solutions
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License (GPL) as published by
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# ------------------------------------------------------------------
#                             Stack
# ------------------------------------------------------------------
itcl::body Stack::constructor {} {
  set _stack {}
}

itcl::body Stack::push {args} {
  set _stack [concat $_stack $args]
}

itcl::body Stack::destructor {} {
}

itcl::body Stack::pop {} {
  set thing [lindex $_stack end]
  set _stack [lreplace $_stack end end]
  return $thing
}

# ------------------------------------------------------------------
#                             Queue
# ------------------------------------------------------------------
itcl::body Queue::constructor {} {
}

itcl::body Queue::destructor {} {
}

itcl::body Queue::pop {} {
  set thing [lindex $_stack 0]
  set _stack [lreplace $_stack 0 0]
  return $thing
}