xref: /haiku/src/apps/haikudepot/util/AppUtils.h (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
1 /*
2  * Copyright 2018, Andrew Lindesay <apl@lindesay.co.nz>.
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 #ifndef APP_UTILS_H
6 #define APP_UTILS_H
7 
8 
9 class AppUtils {
10 
11 public:
12 	static	void			NotifySimpleError(const char* title,
13 								const char* text);
14 
15 };
16 
17 
18 #endif // APP_UTILS_H
19