//
//  CDMConnectorProtocol.h
//  DataManSDK
//
//  Created by Ferenc Knebl on 03/12/14.
//  Copyright (c) 2014 Cognex Corporation. All rights reserved.
//

#ifndef DataManSDK_CDMConnectorProtocol_h
#define DataManSDK_CDMConnectorProtocol_h

@protocol CDMConnectorProtocol <NSObject>

- (BOOL)connectWithTimeout:(NSTimeInterval)timeout andUsername:(NSString*)username andPassword:(NSString*)password;
- (BOOL)disconnect;
- (void)writeData:(NSData *)data;

@end

#endif
