aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rpcsfactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rpcsfactory.h')
-rw-r--r--lib/rpcsfactory.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/rpcsfactory.h b/lib/rpcsfactory.h
new file mode 100644
index 0000000..17a2719
--- /dev/null
+++ b/lib/rpcsfactory.h
@@ -0,0 +1,20 @@
+#ifndef _rpcsfactory_h_
+#define _rpcsfactory_h_
+
+#include "rpcs.h"
+
+class ppsocket;
+
+class rpcsfactory {
+ public:
+ rpcsfactory(ppsocket * skt);
+ virtual rpcs * create(bool);
+
+ private:
+ // Vars
+ ppsocket *skt;
+ int serNum;
+};
+
+#endif
+