error: passing ‘const Service’ as ‘this’ argument of ‘QString Service::getName()’ discards qualifiers
that's would be good, but i've to pass these pointers to other class in order to edit them, so i think i can't use non-pointer...am i right?!
Service service; Service* servicePointer = &service; Service& serviceReference = service; Service& serviceReferenceFromPointer = *service;
nice this way, but...should i store manually the list's size before store elements?
what's the matter with this?! i'm still so confused about reference and pointer