19 lines
406 B
C++
19 lines
406 B
C++
/* testChannelSearcManager.cpp */
|
|
|
|
#include <channelSearchManager.h>
|
|
|
|
using namespace epics::pvData;
|
|
using namespace epics::pvAccess;
|
|
|
|
|
|
|
|
int main(int argc,char *argv[])
|
|
{
|
|
ClientContextImpl* context = new ClientContextImpl();
|
|
ChannelSearchManager* manager = new ChannelSearchManager(context);
|
|
|
|
context->destroy();
|
|
getShowConstructDestruct()->constuctDestructTotals(stdout);
|
|
return(0);
|
|
}
|