/* * * Custom widget Demo * * File : DApplication.h * Purpose : Define the application class * Author : JLV * Creation : 10/19/04 * Last Update : 10/19/04 * * (C) hexaZen 2004 * * This file is part of a demo application for Zinzala. It can be * used, distributed and modified without limitation. * * * $Id$ */ /* * $Log$ */ #ifndef _DAPPLICATION #define _DAPPLICATION #include #include #include using namespace zSDK::Cincinella; using namespace zSDK::Farfalla; class cDWindow; // forward def class cDApplication : public cApplication { public: cDApplication(); ~cDApplication(); protected: void Ready(); private: cDWindow* iWindow; cSettings* iSettings; }; #endif