00001 // wingotodlg.h 00002 // 00003 // Copyright (C) 2001, Chris Laurel <claurel@shatters.net> 00004 // 00005 // Goto object dialog for Windows. 00006 // 00007 // This program is free software; you can redistribute it and/or 00008 // modify it under the terms of the GNU General Public License 00009 // as published by the Free Software Foundation; either version 2 00010 // of the License, or (at your option) any later version. 00011 00012 #ifndef _WINGOTODLG_H_ 00013 #define _WINGOTODLG_H_ 00014 00015 #include "celestiacore.h" 00016 00017 00018 class GotoObjectDialog 00019 { 00020 public: 00021 GotoObjectDialog(HINSTANCE, HWND, CelestiaCore*); 00022 00023 public: 00024 CelestiaCore* appCore; 00025 HWND parent; 00026 HWND hwnd; 00027 }; 00028 00029 00030 #endif // _WINGOTODLG_H_
1.4.1