aboutsummaryrefslogtreecommitdiff
path: root/VKPC/QueueControllerProtocol.h
diff options
context:
space:
mode:
Diffstat (limited to 'VKPC/QueueControllerProtocol.h')
-rw-r--r--VKPC/QueueControllerProtocol.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/VKPC/QueueControllerProtocol.h b/VKPC/QueueControllerProtocol.h
new file mode 100644
index 0000000..34078c7
--- /dev/null
+++ b/VKPC/QueueControllerProtocol.h
@@ -0,0 +1,15 @@
+//
+// QueueProtocol.h
+// VKPC
+//
+// Created by Eugene on 12/3/13.
+// Copyright (c) 2013 Eugene Z. All rights reserved.
+//
+
+@class Queue;
+
+@protocol QueueControllerProtocol <NSObject>
+
+- (void)onQueueTask:(id)task forQueue:(Queue *)queue;
+
+@end