We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
namespace MyNamespace { class MyClass { public: MyClass(); ~MyClass();
void MyFirstCamalCaseMethod(_In_ int param1, _In_ const Point& myPoint); void MySecondCamalCaseMethod(_In_ const char* pMyStr, _Out_ std::vector<float>& myFloats);
private: int m_Id; MyClass* pNext; }; };