mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 13:34:08 -08:00
635071315f
git-svn-id: https://zxing.googlecode.com/svn/trunk@1656 59b500cc-1b3d-0410-9834-0bbf25fbcc57
16 lines
308 B
Objective-C
16 lines
308 B
Objective-C
//
|
|
// ModalViewControllerDelegate.h
|
|
// Barcodes
|
|
//
|
|
// Created by Romain Pechayre on 11/16/10.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
@protocol ModalViewControllerDelegate
|
|
- (void)modalViewControllerWantsToBeDismissed:(UIViewController *)controller;
|
|
|
|
@end
|