summaryrefslogtreecommitdiffstats
path: root/src/PhraseArray.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/PhraseArray.h')
-rw-r--r--src/PhraseArray.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/PhraseArray.h b/src/PhraseArray.h
new file mode 100644
index 0000000..f19cd55
--- /dev/null
+++ b/src/PhraseArray.h
@@ -0,0 +1,13 @@
+#ifndef __PY_PHRASE_ARRAY_H_
+#define __PY_PHRASE_ARRAY_H_
+
+#include "Types.h"
+#include "Array.h"
+
+namespace PY {
+
+typedef Array<Phrase> PhraseArray;
+
+};
+
+#endif