IRC client framework (wrapper around libircclient library).
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

IRCClient.h 688B

1234567891011121314151617181920212223242526
  1. //
  2. // IRCClient.h
  3. //
  4. // Modified IRCClient Copyright 2015-2021 Said Achmiz.
  5. // Original IRCClient Copyright 2009 Nathan Ollerenshaw.
  6. // libircclient Copyright 2004-2009 Georgy Yunaev.
  7. //
  8. // See LICENSE and README.md for more info.
  9. #ifndef IRCCLIENT
  10. #define IRCCLIENT
  11. #import <Foundation/Foundation.h>
  12. //! Project version number for IRCClient.
  13. FOUNDATION_EXPORT double IRCClientVersionNumber;
  14. //! Project version string for IRCClient.
  15. FOUNDATION_EXPORT const unsigned char IRCClientVersionString[];
  16. #import "IRCClient/IRCClientSession.h"
  17. #import "IRCClient/IRCClientSessionDelegate.h"
  18. #import "IRCClient/IRCClientChannel.h"
  19. #import "IRCClient/IRCClientChannelDelegate.h"
  20. #endif