repo.or.cz
/
opsoft_archive.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add very old versions (for history).
[opsoft_archive.git]
/
silentbob
/
silentbob-1.4.1
/
gclib
/
include
/
dstack.h
blob
ec4bfa16bcf0b142d8764b936c0d85d6ad412555
1
/*
2
* (c) Oleg Puchinin 2006
3
* graycardinalster@gmail.com
4
*
5
*/
6
7
#ifndef DEFINE_DSTACK_H
8
#define DEFINE_DSTACK_H
9
10
class
DStack
:
public
EList
11
{
12
public
:
13
int
push
(
char
*
S
);
14
char
*
pop
();
15
char
*
top
();
16
};
17
18
#endif
19