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 1.1KB

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // IRCClient.h
  3. // IRCClient
  4. //
  5. // Copyright © 2015 Said Achmiz.
  6. //
  7. /*
  8. * This library is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU Lesser General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful, but WITHOUT
  14. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
  16. * License for more details.
  17. */
  18. #import <Cocoa/Cocoa.h>
  19. //! Project version number for IRCClient.
  20. FOUNDATION_EXPORT double IRCClientVersionNumber;
  21. //! Project version string for IRCClient.
  22. FOUNDATION_EXPORT const unsigned char IRCClientVersionString[];
  23. // In this header, you should import all the public headers of your framework using statements like #import <IRCClient/PublicHeader.h>
  24. #import "IRCClient/IRCClientSession.h"
  25. #import "IRCClient/IRCClientSessionDelegate.h"
  26. #import "IRCClient/IRCClientChannel.h"
  27. #import "IRCClient/IRCClientChannelDelegate.h"