Introduction to OOP: Chapter 19 : A Case Study: The LAF [next] [previous] [audio] [real] [text]

A Simple Application

class simpleApp : public application {
public:
	simpleApp() : application("simple application") { }
};

void main() {
	simpleApp theApp;

	theApp.run();
};
Intro OOP, Chapter 19, Slide 6

The book describes several more interesting applications.