haiku/src/apps/installedpackages/UninstallWindow.h
Stephan Aßmus 714c386ac3 packageinstaller:
* Reworded info_prepare() for clarity. 
* info_get_package_version() and info_get_package_name() were returning
  memory from a local variable. They return an error code now, possibly
  from info_prepare().

installedpackages:
* Simplifications and refactoring.
* Improve the layout of the interface (using layout management).
* Fix coding style issues.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28145 a95241bf-73f2-0310-859d-f6bbb57e9c96
2008-10-15 16:12:08 +00:00

22 lines
390 B
C++

/*
* Copyright (c) 2007, Haiku, Inc.
* Distributed under the terms of the MIT license.
*
* Author:
* Łukasz 'Sil2100' Zemczak <sil2100@vexillium.org>
*/
#ifndef UNINSTALLWINDOW_H
#define UNINSTALLWINDOW_H
#include "UninstallView.h"
#include <Window.h>
#include <Entry.h>
class UninstallWindow : public BWindow {
public:
UninstallWindow();
};
#endif // UNINSTALLWINDOW_H