xref: /haiku/src/tests/servers/app/benchmark/DrawingModeToString.h (revision 91054f1d38dd7827c0f0ba9490c213775ec7b471)
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