summaryrefslogtreecommitdiffstats
path: root/src/RawEditor.h
blob: 38a158fd1c95ac3f2ec7db5e7fdc0983a65dae24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* vim:set et sts=4: */
#ifndef __PY_RAW_EDITOR__
#define __PY_RAW_EDITOR__

#include <glib.h>
#include "Editor.h"

namespace PY {

class RawEditor : public Editor {
public:
    RawEditor (PinyinProperties &props) : Editor (props) {}
};

};
#endif