empty test file for channel search manager for real now :)

This commit is contained in:
Gasper Jansa
2011-01-06 17:19:20 +01:00
parent 95fdf3e410
commit 5707815767

View File

@@ -0,0 +1,18 @@
/* 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);
}