Skip to content
Muhamad Lotfy edited this page Mar 26, 2014 · 3 revisions

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; }; };

Clone this wiki locally