Files
otclient/src/framework/util/translator.h
2011-08-21 16:43:05 -03:00

15 lines
232 B
C++

#ifndef TRANSLATOR_H
#define TRANSLATOR_H
#include "../const.h"
#include <string>
namespace fw {
AlignmentFlag translateAlignment(std::string aligment);
AnchorEdge translateAnchorEdge(const std::string& anchorPoint);
};
#endif