diff --git a/testApp/remote/testChannelSearchManager.cpp b/testApp/remote/testChannelSearchManager.cpp new file mode 100644 index 0000000..780cda2 --- /dev/null +++ b/testApp/remote/testChannelSearchManager.cpp @@ -0,0 +1,18 @@ +/* testChannelSearcManager.cpp */ + +#include + +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); +}