1 //////////////////////////////////////////////////////////////////////////////// 2 // 3 // File: GIFTranslator.h 4 // 5 // Date: December 1999 6 // 7 // Author: Daniel Switkin 8 // 9 // Copyright 2003 (c) by Daniel Switkin. This file is made publically available 10 // under the BSD license, with the stipulations that this complete header must 11 // remain at the top of the file indefinitely, and credit must be given to the 12 // original author in any about box using this software. 13 // 14 //////////////////////////////////////////////////////////////////////////////// 15 16 #ifndef GIFTRANSLATOR_H 17 #define GIFTRANSLATOR_H 18 19 #include <Application.h> 20 class GIFWindow; 21 22 class GIFTranslator : public BApplication { 23 public: 24 GIFTranslator(); 25 GIFWindow *gifwindow; 26 }; 27 28 #endif 29 30