As James correctly points out, the correct syntax is *myObj. The point is that &myObj gives you the address of myObj, which has a type of myObjectClass**. You want instead to dereference myObj to get at the instance of myObjectClass to which it points, hence you use *.
Incidentally, as it stands at the moment, using *myObj would cause undefined behaviour, since myObj itself has not been initialised. If you don't need to dynamically allocate a myObjectClass, you might be better off just doing this:
myObjectClass myObj;
ClassName::Read(myObj);
If dynamic allocation is a must, then you can do e.g.
myObjectClass *myObj = new myObjectClass;
ClassName::Read(*myObj);
//...
delete myObj;