[ create a new paste ] login | about

Link: http://codepad.org/viHG1Eiu    [ raw code | fork ]

C++, pasted on May 22:
/***************************************************************
 * Name:      Crypted_Ip2Ip_chatApp.cpp
 * Purpose:   Code for Application Class
 * Author:    Rada Florin Daniel (florin.rada87@yahoo.com)
 * Created:   2012-04-08
 * Copyright: Rada Florin Daniel ()
 * License:
 **************************************************************/

#include "Crypted_Ip2Ip_chatApp.h"

//(*AppHeaders
#include "Crypted_Ip2Ip_chatMain.h"
#include <wx/image.h>
//*)

IMPLEMENT_APP(Crypted_Ip2Ip_chatApp);

bool Crypted_Ip2Ip_chatApp::OnInit()
{
    //(*AppInitialize
    bool wxsOK = true;
    wxInitAllImageHandlers();
    if ( wxsOK )
    {
    	Crypted_Ip2Ip_chatFrame* Frame = new Crypted_Ip2Ip_chatFrame(0);
    	Frame->Show();
    	SetTopWindow(Frame);
    }
    //*)
    return wxsOK;

}


Create a new paste based on this one


Comments: