23 lines
404 B
C++
23 lines
404 B
C++
/* clientFactory.h */
|
|
#ifndef CLIENTFACTORY_H
|
|
#define CLIENTFACTORY_H
|
|
|
|
#include <pv/clientContextImpl.h>
|
|
#include <pv/lock.h>
|
|
|
|
namespace epics { namespace pvAccess {
|
|
|
|
class ClientFactory {
|
|
public:
|
|
static void start();
|
|
static void stop();
|
|
|
|
private:
|
|
static epics::pvData::Mutex m_mutex;
|
|
static ClientContextImpl::shared_pointer m_context;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif /* CLIENTFACTORY_H */
|