/* * Copyright 1999, Be Incorporated. All Rights Reserved. * Copyright 2010, Clemens Zeidler * This file may be used under the terms of the Be Sample Code License. * */ #include #include #include "cl_wind.h" const char* kAppSignature = "application/x-vnd.Haiku-Clock"; int main(int argc, char* argv[]) { BApplication app(kAppSignature); BWindow* clockWindow = new TClockWindow(BRect(100, 100, 182, 182), B_TRANSLATE_SYSTEM_NAME("Clock")); clockWindow->Show(); app.Run(); return 0; }