mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1061 Add missing override keyword in ApplicationCode.
This commit is contained in:
@@ -120,7 +120,7 @@ public:
|
||||
void onProcessRequest() override;
|
||||
|
||||
protected:
|
||||
virtual QString methodType() const;
|
||||
virtual QString methodType() const override;
|
||||
|
||||
private:
|
||||
ServerContext m_context;
|
||||
@@ -160,7 +160,7 @@ public:
|
||||
void onProcessRequest() override;
|
||||
|
||||
protected:
|
||||
virtual QString methodType() const;
|
||||
virtual QString methodType() const override;
|
||||
|
||||
private:
|
||||
ServerContext m_context;
|
||||
@@ -204,7 +204,7 @@ public:
|
||||
void onFinishRequest() override;
|
||||
|
||||
protected:
|
||||
virtual QString methodType() const;
|
||||
virtual QString methodType() const override;
|
||||
|
||||
private:
|
||||
ServerContext m_context;
|
||||
|
||||
@@ -140,10 +140,10 @@ public:
|
||||
RiaSelectedCellsStateHandler* stateHandler );
|
||||
grpc::Status GetReservoirBoundingBox( grpc::ServerContext* context,
|
||||
const rips::CaseRequest* request,
|
||||
rips::BoundingBox* reply );
|
||||
rips::BoundingBox* reply ) override;
|
||||
grpc::Status GetCoarseningInfoArray( grpc::ServerContext* context,
|
||||
const rips::CaseRequest* request,
|
||||
rips::CoarseningInfoArray* reply );
|
||||
rips::CoarseningInfoArray* reply ) override;
|
||||
|
||||
std::vector<RiaGrpcCallbackInterface*> createCallbacks() override;
|
||||
};
|
||||
|
||||
@@ -41,10 +41,10 @@ struct DataHolder : public AbstractDataHolder
|
||||
size_t dataCount() const override { return data.size(); }
|
||||
size_t dataSizeOf() const override { return sizeof( typename DataType::value_type ); }
|
||||
|
||||
void reserveReplyStorage( rips::PdmObjectGetterReply* reply ) const;
|
||||
void addValueToReply( size_t valueIndex, rips::PdmObjectGetterReply* reply ) const;
|
||||
size_t getValuesFromChunk( size_t startIndex, const rips::PdmObjectSetterChunk* chunk );
|
||||
void applyValuesToProxyField( caf::PdmProxyFieldHandle* proxyField );
|
||||
void reserveReplyStorage( rips::PdmObjectGetterReply* reply ) const override;
|
||||
void addValueToReply( size_t valueIndex, rips::PdmObjectGetterReply* reply ) const override;
|
||||
size_t getValuesFromChunk( size_t startIndex, const rips::PdmObjectSetterChunk* chunk ) override;
|
||||
void applyValuesToProxyField( caf::PdmProxyFieldHandle* proxyField ) override;
|
||||
|
||||
DataType data;
|
||||
};
|
||||
|
||||
@@ -47,11 +47,11 @@ class RiaGrpcSimulationWellService final : public rips::SimulationWell::AsyncSer
|
||||
public:
|
||||
grpc::Status GetSimulationWellStatus( grpc::ServerContext* context,
|
||||
const rips::SimulationWellRequest* request,
|
||||
rips::SimulationWellStatus* reply );
|
||||
rips::SimulationWellStatus* reply ) override;
|
||||
|
||||
grpc::Status GetSimulationWellCells( grpc::ServerContext* context,
|
||||
const rips::SimulationWellRequest* request,
|
||||
rips::SimulationWellCellInfoArray* reply );
|
||||
rips::SimulationWellCellInfoArray* reply ) override;
|
||||
|
||||
std::vector<RiaGrpcCallbackInterface*> createCallbacks() override;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user