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.h

    r26 r107  
    4848     * Construct the object for the given XPlane instance.
    4949     */
    50     MultiSetter(XPlane& xplane) throw();
     50    MultiSetter(XPlane& xplane) noexcept;
    5151
    5252protected:
     
    5454     * @see MultiBuffer::doExecute
    5555     */
    56     virtual void doExecute() throw(Exception);
     56    virtual void doExecute();
    5757
    5858    /**
    5959     * @see MultiBuffer::doExecuteUnregistered
    6060     */
    61     virtual void doExecuteUnregistered() throw(Exception);
     61    virtual void doExecuteUnregistered();
    6262
    6363private:
     
    6666     * stream.
    6767     */
    68     void write(const DataRef& dataRef) const throw(Exception);
     68    void write(const DataRef& dataRef) const;
    6969
    7070    friend class XPlane;
Note: See TracChangeset for help on using the changeset viewer.