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

    r33 r107  
    4848     * Construct the object for the given XPlane instance.
    4949     */
    50     MultiGetter(XPlane& xplane) throw();
     50    MultiGetter(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     * buffer.
    6767     */
    68     void read(const DataRef& dataRef) throw(Exception);
     68    void read(const DataRef& dataRef);
    6969
    7070    /**
    7171     * Read all the values.
    7272     */
    73     void readValues() throw(Exception);
     73    void readValues();
    7474
    7575    friend class XPlane;
Note: See TracChangeset for help on using the changeset viewer.