For example, if a method is defined as the following:
ILDCRTParams &GetParams() const;
Is this any different then:
ILDCRTParams& GetParams() const;
I'm using C++ 11.
They are exactly the same. The return type is ILDCRTParams&
ILDCRTParams&