1// AlertManualTestApp.cpp
2
3#include <stdio.h>
4#include "AlertManualTestApp.h"
5#include "AlertTestWindow.h"
6
7int main(int argc, char **argv)
8{
9	AlertManualTestApp app;
10	app.Run();
11
12	return 0;
13}
14
15AlertManualTestApp::AlertManualTestApp()
16	: BApplication("application/x-vnd.Haiku-AlertManualTest")
17{
18	BRect rect(150, 150, 600, 300);
19	fMainWindow = new AlertTestWindow(rect);
20
21	fMainWindow->Show();
22}
23
24