|
|||||
| | |||||
| sub-categories and articles | |||||||||||||
| --->create new sub-category | |||||||||||||
Makefile | |||||||||||||
| add
all: main main: application.o # list.h is a template class g++ -o $@ $^ application.o: application.cpp application.h list.h g++ -c application.cpp | |||||||||||||
README | |||||||||||||
| add
to reduce the number of classes from 2 to 4 I did two things: 1) threw that cheesy looop from the main files onto the top of application.cpp 2) cleverly :) replaced "new list<item>" with "new list<string>" so that I no longer needed the item class. minor changes: implicit conversion from char * to string for reading in from files (file: application.cpp method: application()) | |||||||||||||
absent.rpt | |||||||||||||
| add
Flintstone Fred Gadget Inspector ofJungle George Mouse Mickey Mouse Minnie | |||||||||||||
application.cpp | |||||||||||||
add
// driver class which moves class<ItemTypes> between two lists | |||||||||||||