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