/* ============================================================================ Name : Placeads2Application.cpp Author : Copyright : Your copyright notice Description : Main application class ============================================================================ */ // INCLUDE FILES #include "Placeads2.hrh" #include "Placeads2Document.h" #include "Placeads2Application.h" // ============================ MEMBER FUNCTIONS =============================== // ----------------------------------------------------------------------------- // CPlaceads2Application::CreateDocumentL() // Creates CApaDocument object // ----------------------------------------------------------------------------- // CApaDocument* CPlaceads2Application::CreateDocumentL() { // Create an Placeads2 document, and return a pointer to it return CPlaceads2Document::NewL(*this); } // ----------------------------------------------------------------------------- // CPlaceads2Application::AppDllUid() // Returns application UID // ----------------------------------------------------------------------------- // TUid CPlaceads2Application::AppDllUid() const { // Return the UID for the Placeads2 application return KUidPlaceads2App; } // End of File