with keyword in Pascal can be use to quick access the field of a record. Anybody knows if C++ has anything similar to that?
with
Ex: I have a pointer with m
The closest you can get is method chaining:
myObj->setX(x) ->setY(y) ->setZ(z)
for setting multiple fields and using for namespaces.
using