-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
There are several classes and such that merely replicate STL classes. They should be removed in favour of the standard classes.
- Remove
LINKLISTclass - Include standard headers consistently
- Replace
str_ptrwithstd::string - Replace
ARRAYwithstd::vector(orstd::maporstd::set) - Replace
LISTwithstd::vector(orstd::maporstd::set) - Replace
STDboolwithbooland use its builtin values - Replace
STDmem_queuewith astd::stringbuf - Replace
STDdstreamand/orNetStream? - Remove
mem_pushandSTDmem_*classes - Replace
HASHwith stuff? Might be C++11 - Maybe replace
REFptrwithshared_ptr(definitely C++11, or TR1)
Reactions are currently unavailable