Ignore:
Timestamp:
12/15/22 19:26:40 (17 months ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Modernized the exception specifications in the C++ client

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/client/c/hu/varadiistvan/xplra/MultiSetter.cc

    r40 r107  
    4848//------------------------------------------------------------------------------
    4949
    50 MultiSetter::MultiSetter(XPlane& xplane) throw() :
     50MultiSetter::MultiSetter(XPlane& xplane) noexcept :
    5151    MultiBuffer(xplane, Protocol::COMMAND_REGISTER_SET_MULTI,
    5252                Protocol::COMMAND_UNREGISTER_SET_MULTI)
     
    5656//------------------------------------------------------------------------------
    5757
    58 inline void MultiSetter::write(const DataRef& dataRef) const throw(Exception)
     58inline void MultiSetter::write(const DataRef& dataRef) const
    5959{
    6060    switch (dataRef.type) {
     
    8787//------------------------------------------------------------------------------
    8888
    89 void MultiSetter::doExecute() throw(Exception)
     89void MultiSetter::doExecute()
    9090{
    9191    xplane.checkStream();
     
    104104//------------------------------------------------------------------------------
    105105
    106 void MultiSetter::doExecuteUnregistered() throw(Exception)
     106void MultiSetter::doExecuteUnregistered()
    107107{
    108108    xplane.stream->writeU8(Protocol::COMMAND_SET_MULTI);
Note: See TracChangeset for help on using the changeset viewer.