作业7
This commit is contained in:
parent
d6e00f3cea
commit
5e504309eb
1 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
||||||
#ifndef _GLIBCXX_IOSTREAM
|
#ifndef _STACK_HPP_
|
||||||
|
#define _STACK_HPP_
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#endif
|
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
class Stack
|
class Stack
|
||||||
|
@ -60,3 +61,4 @@ protected:
|
||||||
_v = p;
|
_v = p;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
#endif
|
Reference in a new issue