Add very old versions (for history).
[opsoft_archive.git] / silentbob / silentbob-1.4.1 / gclib / include / dstack.h
blobec4bfa16bcf0b142d8764b936c0d85d6ad412555
1 /*
2 * (c) Oleg Puchinin 2006
3 * graycardinalster@gmail.com
5 */
7 #ifndef DEFINE_DSTACK_H
8 #define DEFINE_DSTACK_H
10 class DStack : public EList
12 public:
13 int push (char * S);
14 char * pop ();
15 char * top ();
18 #endif