xref: /haiku/src/tests/servers/app/benchmark/DrawingModeToString.h (revision b6b0567fbd186f8ce8a0c90bdc7a7b5b4c649678)
1 /*
2  * Copyright (C) 2009 Stephan Aßmus <superstippi@gmx.de>
3  * All rights reserved. Distributed under the terms of the MIT license.
4  */
5 #ifndef DRAWING_MODE_TO_STRING_H
6 #define DRAWING_MODE_TO_STRING_H
7 
8 #include <InterfaceDefs.h>
9 
10 
11 bool ToDrawingMode(const char* string, drawing_mode& mode);
12 bool ToString(drawing_mode mode, const char*& string);
13 
14 
15 #endif // DRAWING_MODE_TO_STRING_H
16