/* 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 "ThreeFormsApplication.h" #include "ThreeFormsDocument.h" // ================= MEMBER FUNCTIONS ========================================= // ---------------------------------------------------------------------------- // TUid CThreeFormsApplication::AppDllUid() // Returns application UID. // ---------------------------------------------------------------------------- // TUid CThreeFormsApplication::AppDllUid() const { return KUidThreeForms; } // ---------------------------------------------------------------------------- // CApaDocument* CThreeFormsApplication::CreateDocumentL() // Creates CThreeFormsDocument object. // ---------------------------------------------------------------------------- // CApaDocument* CThreeFormsApplication::CreateDocumentL() { return CThreeFormsDocument::NewL( *this ); } // ================= OTHER EXPORTED FUNCTIONS ================================= // ---------------------------------------------------------------------------- // CApaApplication* NewApplication() // Constructs CThreeFormsApplication. // Returns: CApaDocument*: created application object // ---------------------------------------------------------------------------- // EXPORT_C CApaApplication* NewApplication() { return new CThreeFormsApplication; } // ---------------------------------------------------------------------------- // TInt E32Dll( TDllReason ) // Entry point function for Symbian Apps. // Returns: KErrNone: No error // ---------------------------------------------------------------------------- // GLDEF_C TInt E32Dll( TDllReason ) { return KErrNone; } // End of File