summaryrefslogtreecommitdiff
path: root/jni/ruby/ext/psych/psych.h
diff options
context:
space:
mode:
Diffstat (limited to 'jni/ruby/ext/psych/psych.h')
-rw-r--r--jni/ruby/ext/psych/psych.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/jni/ruby/ext/psych/psych.h b/jni/ruby/ext/psych/psych.h
new file mode 100644
index 0000000..1830ca4
--- /dev/null
+++ b/jni/ruby/ext/psych/psych.h
@@ -0,0 +1,20 @@
+#ifndef PSYCH_H
+#define PSYCH_H
+
+#include <ruby.h>
+
+#ifdef HAVE_RUBY_ENCODING_H
+#include <ruby/encoding.h>
+#endif
+
+#include <yaml.h>
+
+#include <psych_parser.h>
+#include <psych_emitter.h>
+#include <psych_to_ruby.h>
+#include <psych_yaml_tree.h>
+
+extern VALUE mPsych;
+
+
+#endif