Changed: Removed other throws
--HG-- branch : develop
This commit is contained in:
parent
06a4244df3
commit
6097ada1fa
4 changed files with 3 additions and 13 deletions
|
@ -171,8 +171,7 @@ namespace NLNET
|
|||
virtual void setTransportPeerInvisible(const std::string &transportInstanceName, bool peerInvisible) =0;
|
||||
|
||||
/// Activate/stop firewalling mode on a transport
|
||||
virtual void setTransportFirewallMode(const std::string &transportInstanceName, bool firewalled)
|
||||
throw (EGatewayFirewallBreak) =0;
|
||||
virtual void setTransportFirewallMode(const std::string &transportInstanceName, bool firewalled) =0;
|
||||
|
||||
/// Send a command to a transport
|
||||
virtual void transportCommand(const TParsedCommandLine &commandLine) =0;
|
||||
|
@ -233,9 +232,7 @@ namespace NLNET
|
|||
/** Disclose module information to a connected gateway.
|
||||
* This can also be this gateway itself.
|
||||
*/
|
||||
virtual void discloseModule(IModuleProxy *moduleProxy)
|
||||
throw (EGatewayNotConnected)
|
||||
=0;
|
||||
virtual void discloseModule(IModuleProxy *moduleProxy) =0;
|
||||
|
||||
/** Retrieve the proxy for a locally plugged module.
|
||||
* Each local module plugged in a gateway has an associated
|
||||
|
|
|
@ -448,7 +448,6 @@ namespace NLNET
|
|||
|
||||
/// Activate/stop firewalling mode on a transport
|
||||
virtual void setTransportFirewallMode(const std::string &transportInstanceName, bool firewalled)
|
||||
throw (EGatewayFirewallBreak)
|
||||
{
|
||||
TTransportList::iterator it(_Transports.find(transportInstanceName));
|
||||
if (it == _Transports.end())
|
||||
|
@ -1246,7 +1245,6 @@ namespace NLNET
|
|||
}
|
||||
|
||||
virtual void discloseModule(IModuleProxy *moduleProxy)
|
||||
throw (EGatewayNotConnected)
|
||||
{
|
||||
nlassert(moduleProxy->getModuleGateway() == this);
|
||||
|
||||
|
@ -1584,7 +1582,6 @@ namespace NLNET
|
|||
}
|
||||
|
||||
virtual void _broadcastModuleMessage(IModule *senderModule, const NLNET::CMessage &message)
|
||||
throw (EModuleNotPluggedHere)
|
||||
{
|
||||
H_AUTO(CModuleGetaway__broadcastModuleMessage);
|
||||
// send the message to all proxies (except the sender module)
|
||||
|
|
|
@ -102,7 +102,6 @@ namespace NLNET
|
|||
|
||||
/// Activate/stop firewalling mode on a transport
|
||||
virtual void setTransportFirewallMode(const std::string &/* transportInstanceName */, bool /* firewalled */)
|
||||
throw (EGatewayFirewallBreak)
|
||||
{
|
||||
// unsupported
|
||||
nlstop;
|
||||
|
@ -174,12 +173,10 @@ namespace NLNET
|
|||
// return;
|
||||
// }
|
||||
// virtual void openGatewayServer(uint16 listeningPort)
|
||||
// throw (EGatewayAlreadyOpen, EGatewayPortInUse)
|
||||
// {
|
||||
// nlstop;
|
||||
// }
|
||||
// virtual void closeGatewayServer()
|
||||
// throw (EGatewayNotOpen)
|
||||
// {
|
||||
// nlstop;
|
||||
// }
|
||||
|
@ -233,7 +230,6 @@ namespace NLNET
|
|||
{
|
||||
}
|
||||
virtual void discloseModule(IModuleProxy *moduleProxy)
|
||||
throw (EGatewayNotConnected)
|
||||
{
|
||||
// check that the module is plugged here
|
||||
nlassert(_ModuleProxies.getB(moduleProxy) != NULL);
|
||||
|
|
|
@ -340,7 +340,7 @@ std::string CParticleWorkspace::getFilename() const
|
|||
return CFile::getFilename(_Filename);
|
||||
}
|
||||
|
||||
CWorkspaceNode *CParticleWorkspace::addNode(const std::string &filenameWithFullPath) throw( NLMISC::Exception)
|
||||
CWorkspaceNode *CParticleWorkspace::addNode(const std::string &filenameWithFullPath)
|
||||
{
|
||||
// Check that file is not already inserted
|
||||
std::string fileName = NLMISC::CFile::getFilename(filenameWithFullPath);
|
||||
|
|
Loading…
Reference in a new issue