examples/after/example_classes.h
changeset 0 fe474e3b08fb
child 5 29cf076edbda
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/after/example_classes.h	Mon Mar 22 21:41:09 2010 +0000
@@ -0,0 +1,25 @@
+// Copyright (c) 2010 Symbian Foundation Ltd.
+// All rights reserved.
+// This component and the accompanying materials are made available
+// under the terms of the License "Eclipse Public License v1.0"
+// which accompanies this distribution, and is available
+// at the URL "http://www.eclipse.org/legal/epl-v10.html".
+//
+// Initial Contributors:
+// Symbian Foundation - Initial contribution
+// 
+// Description:
+// Examples of things which GCC does not like in the Symbian codebase.
+
+// Various problems with classes
+
+class TClass1
+	{
+	public:
+	TClass1(int a, int b);
+	int Average();						// Removed classname
+	
+	private:
+	int iA;
+	int iB;
+	};