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