Octave interface: Rebuilt the riSetActiveCellProperties command.

Accept the new arguments, refactored to new framework, improved error handling.
Still needs to support specified timesteps and Grid Coarsening
p4#: 21713
This commit is contained in:
Jacob Støren
2013-05-24 11:36:59 +02:00
parent 7ba9cef84b
commit 767c1d2409
5 changed files with 452 additions and 180 deletions

View File

@@ -24,13 +24,14 @@
//////////////////////////////////////////////////////////////////////////
class RiaSocketServer;
class QTcpSocket;
class RiaSocketCommand
{
public:
virtual ~RiaSocketCommand() {}
virtual bool interpretCommand(RiaSocketServer* server, const QList<QByteArray>& args, QDataStream& socketStream) = 0;
virtual bool interpretMore(QDataStream& stream) { return true; }
virtual bool interpretMore(RiaSocketServer* server, QTcpSocket* currentClient) { return true; }
};
#include "cafFactory.h"