NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2284

unbalanced parenthesis found while processing a member function

A member-function definition ended with a parenthesis instead of a brace.

Example

class C {
public:
   void func()
   {
   );            // error, parenthesis instead of brace
};