/* Machine-made version of this file copyright (c) 2005 Somusar */ /* Derived from samples that are Copyright (c) 2004, Nokia. All rights reserved */ // INCLUDE FILES #include "ThreeFormsDocument.h" #include "ThreeFormsAppUi.h" // ================= MEMBER FUNCTIONS ========================================= // ---------------------------------------------------------------------------- // CThreeFormsDocument::NewL() // Two-phased constructor. // ---------------------------------------------------------------------------- // CThreeFormsDocument* CThreeFormsDocument::NewL( CEikApplication& aApp ) { CThreeFormsDocument* self = new ( ELeave ) CThreeFormsDocument( aApp ); return self; } // ---------------------------------------------------------------------------- // CThreeFormsDocument::~CThreeFormsDocument() // Destructor. // ---------------------------------------------------------------------------- // CThreeFormsDocument::~CThreeFormsDocument() { } // ---------------------------------------------------------------------------- // CThreeFormsDocument::CThreeFormsDocument() // Overload constructor. // ---------------------------------------------------------------------------- // CThreeFormsDocument::CThreeFormsDocument( CEikApplication& aApp ) : CEikDocument( aApp ) { } // ---------------------------------------------------------------------------- // CThreeFormsDocument::CreateAppUiL() // Constructs CThreeFormsAppUi. // ---------------------------------------------------------------------------- // CEikAppUi* CThreeFormsDocument::CreateAppUiL() { return new ( ELeave ) CThreeFormsAppUi; } // End of File