mirror of
https://github.com/neon443/ShhShell.git
synced 2026-03-11 13:26:16 +00:00
25 lines
622 B
Objective-C
25 lines
622 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
//! Project version number for NMSSH.
|
|
FOUNDATION_EXPORT double NMSSHVersionNumber;
|
|
|
|
//! Project version string for NMSSH.
|
|
FOUNDATION_EXPORT const unsigned char NMSSHVersionString[];
|
|
|
|
// In this header, you should import all the public headers of your framework using statements like #import <NMSSH/PublicHeader.h>
|
|
#import "libssh2.h"
|
|
#import "libssh2_sftp.h"
|
|
|
|
#import "NMSSHSessionDelegate.h"
|
|
#import "NMSSHChannelDelegate.h"
|
|
|
|
#import "NMSSHSession.h"
|
|
#import "NMSSHChannel.h"
|
|
#import "NMSFTP.h"
|
|
#import "NMSFTPFile.h"
|
|
#import "NMSSHConfig.h"
|
|
#import "NMSSHHostConfig.h"
|
|
|
|
#import "NMSSHLogger.h"
|
|
|