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. /*
  6. * Modified IRCClient Copyright 2015 Said Achmiz (www.saidachmiz.net)
  7. *
  8. * Original IRCClient Copyright (C) 2009 Nathan Ollerenshaw chrome@stupendous.net
  9. *
  10. * This library is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU Lesser General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or (at your
  13. * option) any later version.
  14. *
  15. * This library is distributed in the hope that it will be useful, but WITHOUT
  16. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  17. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
  18. * License for more details.
  19. */
  20. #import <Cocoa/Cocoa.h>
  21. //! Project version number for IRCClient.
  22. FOUNDATION_EXPORT double IRCClientVersionNumber;
  23. //! Project version string for IRCClient.
  24. FOUNDATION_EXPORT const unsigned char IRCClientVersionString[];
  25. #import "IRCClient/IRCClientSession.h"
  26. #import "IRCClient/IRCClientSessionDelegate.h"
  27. #import "IRCClient/IRCClientChannel.h"
  28. #import "IRCClient/IRCClientChannelDelegate.h"