From a10e52a3c21610826d87488485958f8e1ad2dcbb Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Wed, 20 Jun 2012 11:18:16 -0500 Subject: [PATCH] Revert removing some fixtures --- test/fixtures/c/hello.h | 6 ++++++ .../objective-c/MainMenuViewController.h | 21 +++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 test/fixtures/c/hello.h create mode 100644 test/fixtures/objective-c/MainMenuViewController.h diff --git a/test/fixtures/c/hello.h b/test/fixtures/c/hello.h new file mode 100644 index 00000000..f19e5d3b --- /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 00000000..f6467719 --- /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