home *** CD-ROM | disk | FTP | other *** search
/ Freelog 17 / Freelog017.iso / BeOS / ababelone / Sources / aba_Be_lone.h < prev    next >
C/C++ Source or Header  |  2000-11-05  |  1KB  |  43 lines

  1. /*
  2.     Copyright (C) 2000 by Herv├⌐ PHILIPPE <rv@bemail.org>
  3.  
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.  
  9.     This library is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.     Library General Public License for more details.
  13.  
  14.     You should have received a copy of the GNU Library General Public
  15.     License along with this library; if not, write to the Free
  16.     Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18.  
  19. /*
  20. Remarque IMPORTANTE : aba_Be_lone est un logiciel sous licence GPL (open-source prot├⌐g├⌐ par copyleft).
  21. Pour plus de pr├⌐cisions, il faut regarder le fichier texte relatif ├á cette licence.
  22. */
  23.  
  24. #ifndef _ABABELONEAPP_H_
  25. #define _ABABELONEAPP_H_
  26.  
  27. #include <Application.h>
  28. #include <Screen.h>
  29. #include "FenetreAbabelone.h"
  30.  
  31. // Signature de l'application
  32. #define ABABELONE_APP_SIG "application/x-vnd.Herv├⌐ PHILIPPE-aba_Be_lone"
  33.  
  34. class AbabeloneApp: public BApplication
  35. {
  36. // FONCTIONS
  37.     public:
  38.             AbabeloneApp();        // Constructeur
  39. // VARIABLES ET CONSTANTES
  40.     private:
  41. };
  42.  
  43. #endif