summaryrefslogtreecommitdiffstats
path: root/src/CustomPhrase.h
blob: f876d65bf17e2e543b4673998ac61cf47ef4d499 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __PY_CUSTOM_PHRASE_H_
#define __PY_CUSTOM_PHRASE_H_

#include <glib.h>

namespace PY {

class CustomPhrase {
public:
    CustomPhrase (void) {}
private:
    gboolean load (const gchar *file);
};

};

#endif