aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2012-06-20 11:18:47 -0500
committerJoshua Peek <josh@joshpeek.com>2012-06-20 11:18:47 -0500
commite33d8f3685829e5cec50bc2247665a39e21bc184 (patch)
tree0f461218440c20c5c38be140a0fc365c57cb9df9 /test
parent645a87d02b2eaeaa1105d4f5a72cafc9804fda19 (diff)
parenta10e52a3c21610826d87488485958f8e1ad2dcbb (diff)
Merge branch 'master' into bayesian
Diffstat (limited to 'test')
-rw-r--r--test/fixtures/c/hello.h6
-rw-r--r--test/fixtures/objective-c/MainMenuViewController.h21
2 files changed, 27 insertions, 0 deletions
diff --git a/test/fixtures/c/hello.h b/test/fixtures/c/hello.h
new file mode 100644
index 0000000..f19e5d3
--- /dev/null
+++ b/test/fixtures/c/hello.h
@@ -0,0 +1,6 @@
+#ifndef HELLO_H
+#define HELLO_H
+
+void hello();
+
+#endif
diff --git a/test/fixtures/objective-c/MainMenuViewController.h b/test/fixtures/objective-c/MainMenuViewController.h
new file mode 100644
index 0000000..f646771
--- /dev/null
+++ b/test/fixtures/objective-c/MainMenuViewController.h
@@ -0,0 +1,21 @@
+//
+// Copyright 2009-2011 Facebook
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+
+@interface MainMenuViewController : TTTableViewController {
+
+}
+
+@end