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
11bool ToDrawingMode(const char* string, drawing_mode& mode);
12bool ToString(drawing_mode mode, const char*& string);
13
14
15#endif // DRAWING_MODE_TO_STRING_H
16