From 7e2069f427f2ec8b986aef6c7a8661d128ea4aab Mon Sep 17 00:00:00 2001 From: Jonas Schnelli Date: Mon, 12 Mar 2012 19:10:12 +0100 Subject: [PATCH] changed .m template to make use of private interface As in Xcode 4.3 the .m file template has now a private interface declaration Signed-off-by: Jonas Schnelli --- templates/human.m.motemplate | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/templates/human.m.motemplate b/templates/human.m.motemplate index 66fb9439..1ab4e888 100644 --- a/templates/human.m.motemplate +++ b/templates/human.m.motemplate @@ -1,5 +1,13 @@ #import "<$managedObjectClassName$>.h" + +@interface <$managedObjectClassName$> () + +// Private interface goes here. + +@end + + @implementation <$managedObjectClassName$> // Custom logic goes here.