Prev Next Up Title Contents Index

Yksinkertainen esimerkki: hello.cpp

apf\owl5\hello.cpp - OWL 5.0 -versio

	/****************/
	/* hello.cpp    */
	/****************/
	// Pienin OWL 5.0 ohjelma.!  Projektiin vain tämä tiedosto
	#include <owl\applicat.h>
	
	class THelloApp : public TApplication {
	public:
	  THelloApp(const char far *name = 0) : TApplication(name) {};
	};
	
	int OwlMain(int , char far * [])
	{
	  return THelloApp("Hello World!").Run();
	}


Prev Next Up Title Contents Index