Rudiments
clientserverfactory.h
1 // Copyright (c) 2002 David Muse
2 // See the COPYING file for more information.
3 
4 #ifndef RUDIMENTS_CLIENTSERVER_FACTORY_H
5 #define RUDIMENTS_CLIENTSERVER_FACTORY_H
6 
7 #include <rudiments/private/clientserverfactoryincludes.h>
8 
9 #ifdef RUDIMENTS_NAMESPACE
10 namespace rudiments {
11 #endif
12 
15 class RUDIMENTS_DLLSPEC clientserverfactory {
16  public:
25  static client *getClient(const char *type);
26 
35  static server *getServer(const char *type);
36 };
37 
38 #ifdef RUDIMENTS_NAMESPACE
39 }
40 #endif
41 
42 #endif