drop some dead code

This commit is contained in:
Michael Davidsaver
2018-02-01 19:51:32 -08:00
parent 606669c62b
commit d41d15d59e
2 changed files with 0 additions and 29 deletions

View File

@ -531,32 +531,6 @@ int main (int argc, char *argv[])
case 'i': /* Print server info */
printInfo = true;
break;
/*
case 'F': // Store this for output formatting
fieldSeparator = (char) *optarg;
break;
case 'f': // Use input stream as input
{
string fileName = optarg;
if (fileName == "-")
inputStream = &cin;
else
{
ifs.open(fileName.c_str(), ifstream::in);
if (!ifs)
{
fprintf(stderr,
"Failed to open file '%s'.\n",
fileName.c_str());
return 1;
}
else
inputStream = &ifs;
}
fromStream = true;
break;
}*/
case '?':
fprintf(stderr,
"Unrecognized option: '-%c'. ('pvlist -h' for help.)\n",

View File

@ -171,7 +171,6 @@ public:
* @param client client (channel) acquiring the transport
* @return <code>true</code> if transport was granted, <code>false</code> otherwise.
*/
//virtual bool acquire(ClientChannelImpl::shared_pointer const & client) = 0;
virtual bool acquire(std::tr1::shared_ptr<ClientChannelImpl> const & client) = 0;
/**
@ -179,7 +178,6 @@ public:
* @param client client (channel) releasing the transport
*/
virtual void release(pvAccessID clientId) = 0;
//virtual void release(ClientChannelImpl::shared_pointer const & client) = 0;
/**
* Get protocol type (tcp, udp, ssl, etc.).
@ -312,7 +310,6 @@ public:
virtual epics::pvData::Timer::shared_pointer getTimer() = 0;
//virtual TransportRegistry::shared_pointer getTransportRegistry() = 0;
virtual TransportRegistry* getTransportRegistry() = 0;