DNWA/11/wywolania/Data/stide_v1.1/Utils/list.h

13 lines
231 B
C
Raw Normal View History

2021-01-28 18:33:55 +01:00
// list.h
class List {
public:
virtual int Insert(int val) {return 0;}
virtual int Search(int val) {return 0;}
virtual void Write(ostream &s) {;}
virtual int Empty(void) {return 0;}
};
//typedef List *ListPtr;