25 lines
309 B
C++
25 lines
309 B
C++
/*
|
|
* serverContext.h
|
|
*
|
|
* Created on: Jan 4, 2011
|
|
* Author: Miha Vitorovic
|
|
*/
|
|
|
|
#ifndef SERVERCONTEXT_H_
|
|
#define SERVERCONTEXT_H_
|
|
|
|
#include "remote.h"
|
|
|
|
namespace epics {
|
|
namespace pvAccess {
|
|
|
|
class ServerContextImpl : public Context {
|
|
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
|
|
#endif /* SERVERCONTEXT_H_ */
|