CommandServiceManager -1.00
Phoenix engine interface
Classes/Request/Request.h
00001 //
00002 //  Request.h
00003 //  CommandServiceManager
00004 //
00005 //  Created by Pichaya Srifar on 8/1/11.
00006 //  Copyright 2011 Vervata. All rights reserved.
00007 //
00008 
00009 #import <Foundation/Foundation.h>
00010 #import "CommandPriorityEnum.h"
00011 #import "TransportDirectiveEnum.h"
00012 
00013 @interface Request : NSObject {
00014         uint32_t CSID;
00015         CommandPriority priority;
00016         TransportDirective directive;
00017 }
00018 
00019 @property (nonatomic) uint32_t CSID;
00020 @property (nonatomic) CommandPriority priority;
00021 @property (nonatomic) TransportDirective directive;
00022 
00030 - (NSComparisonResult)compare:(Request *)otherObject;
00031 
00032 @end
 All Data Structures Functions Properties