-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathHPCMethod.h
More file actions
41 lines (35 loc) · 1.01 KB
/
HPCMethod.h
File metadata and controls
41 lines (35 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
///////////////////////////////////////////////////////////
// HPCMethod.h
// Implementation of the Class HPCMethod
// Created on: 07-Lie-2013 20:07:30
// Original author: Povilas
///////////////////////////////////////////////////////////
#if !defined(HPCMETHOD_H)
#define HPCMETHOD_H
#include "ObjectMatrix.h"
#include "WebInterface.h"
/*! \file HPCMethod class
* \brief Abstract class that aggregates ObjectMatrix X and ability to send SOAP message
* with data about stress error value and method computation time.
*/
class HPCMethod : public WebInterface
{
public:
/*! \fn HPCMethod();
* \brief A default constructor.
*/
HPCMethod();
/*! \fn virtual ~HPCMethod();
* \brief A destructor.
*/
virtual ~HPCMethod();
/*! \var ObjectMatrix X
* \brief Initial input data matrix.
*/
ObjectMatrix X;
/*! \fn virtual void sendMessage();
* \brief Sends a message to Web interface.
*/
virtual void sendMessage();
};
#endif // !defined(HPCMETHOD_H)