IRC client framework (wrapper around libircclient library).
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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