summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLUnsubscribeButton.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2020-08-27 16:15:33 -0400
committerJoel Fischer <joeljfischer@gmail.com>2020-08-27 16:15:33 -0400
commitebaf2cdcfd4792041764b116865f7d9a162423d3 (patch)
tree2e53f7c2f25b42e68fbc6e34f7bba1d86532c00e /SmartDeviceLink/SDLUnsubscribeButton.h
parent2cb26cbf102bdb309a67880182041393b5ae2559 (diff)
downloadsdl_ios-ebaf2cdcfd4792041764b116865f7d9a162423d3.tar.gz
In progress moving of files
Diffstat (limited to 'SmartDeviceLink/SDLUnsubscribeButton.h')
-rw-r--r--SmartDeviceLink/SDLUnsubscribeButton.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/SmartDeviceLink/SDLUnsubscribeButton.h b/SmartDeviceLink/SDLUnsubscribeButton.h
deleted file mode 100644
index 9fd78ec25..000000000
--- a/SmartDeviceLink/SDLUnsubscribeButton.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// SDLUnsubscribeButton.h
-//
-
-#import "SDLRPCRequest.h"
-
-#import "SDLButtonName.h"
-
-
-/**
- * Deletes a subscription to button notifications for the specified button. For
- * more information about button subscriptions, see SDLSubscribeButton
- * <p>
- * Application can unsubscribe from a button that is currently being pressed
- * (i.e. has not yet been released), but app will not get button event
- * <p>
- * <b>HMILevel needs to be FULL, LIMITED or BACKGROUND</b>
- * <p>
-
- * @since SmartDeviceLink 1.0<br/>
- * See SDLSubscribeButton
- */
-
-NS_ASSUME_NONNULL_BEGIN
-
-@interface SDLUnsubscribeButton : SDLRPCRequest
-
-/// Convenience init to unsubscribe from a subscription button
-///
-/// @param buttonName A name of the button to unsubscribe from
-/// @return A name of the button to unsubscribe from
-- (instancetype)initWithButtonName:(SDLButtonName)buttonName;
-
-/**
- * A name of the button to unsubscribe from
- * @discussion An Enumeration value, see <i>
- * SDLButtonName</i>
- */
-@property (strong, nonatomic) SDLButtonName buttonName;
-
-@end
-
-NS_ASSUME_NONNULL_END