summaryrefslogtreecommitdiff
path: root/FantomModule/FantomModulePriv.h
diff options
context:
space:
mode:
authorTat-Chee Wan (USM)2011-03-01 12:12:49 +0800
committerTat-Chee Wan (USM)2011-03-01 12:12:49 +0800
commit2cbe251e1b726c2fc5347dffd25cd4f9102012ed (patch)
tree54d276fb63f4b1b64858d2e845ece5a7c577ae51 /FantomModule/FantomModulePriv.h
parent4ac22d8834dd625876281de4fc4da4e5cd6d1b59 (diff)
added fantom module for python
Diffstat (limited to 'FantomModule/FantomModulePriv.h')
-rw-r--r--FantomModule/FantomModulePriv.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/FantomModule/FantomModulePriv.h b/FantomModule/FantomModulePriv.h
new file mode 100644
index 0000000..54e0775
--- /dev/null
+++ b/FantomModule/FantomModulePriv.h
@@ -0,0 +1,19 @@
+/*
+ * FantomModulePriv.h
+ * FantomModule
+ *
+ * Created by tcmac on 01/03/2011.
+ * Copyright 2011 __MyCompanyName__. All rights reserved.
+ *
+ */
+
+/* The classes below are not exported */
+#pragma GCC visibility push(hidden)
+
+class FantomModulePriv
+{
+ public:
+ void HelloWorldPriv(const char *);
+};
+
+#pragma GCC visibility pop