/*========================================================================= Program: wxMaracas Module: $RCSfile: wxMaracasApp02.h,v $ Language: C++ Date: $Date: 2008/10/31 16:32:09 $ Version: $Revision: 1.1 $ Copyright: (c) 2002, 2003 License: This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ #ifndef __WX__MARACAS__APP__02__H__ #define __WX__MARACAS__APP__02__H__ // ---------------------------------------------------------------------------- // wx headers inclusion. // For compilers that support precompilation, includes . // ---------------------------------------------------------------------------- #include #ifdef __BORLANDC__ #pragma hdrstop #endif #ifndef WX_PRECOMP #include #endif #include /** * \brief Maracas main application. */ class wxMaracasApp02 : public wxApp { public: /* void SetVolumeData(int dimX,int dimY,int dimZ, float spacingX, float spacingY, float spacingZ, unsigned short * pixels); void ShowFrame(int cmdShow); bool Initialized(); void Reset(); void Run(); */ bool OnInit( ); int OnExit(); private: marInterface *_mar; /* bool initialized; wxMaracasFrame* m_pFrame; */ }; #endif // __WX__MARACAS__APP__H__