-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDataMatrix.h
More file actions
47 lines (41 loc) · 1.19 KB
/
DataMatrix.h
File metadata and controls
47 lines (41 loc) · 1.19 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
42
43
44
45
46
47
///////////////////////////////////////////////////////////
// DataMatrix.h
// Implementation of the Interface DataMatrix
// Created on: 07-Lie-2013 20:07:29
// Original author: Povilas
///////////////////////////////////////////////////////////
/** \class DataMatrix
* \brief A class of pure virtual methods for manipulating the Objectmatrix.
*/
#if !defined(DATAMATIRX_H)
#define DATAMATIRX_H
#include "ObjectMatrix.h"
/*! \file DataMatrix
* \brief Class that represents the matrix of the data objects
*/
class DataMatrix
{
public:
/*! \fn DataMatrix()
* \brief A default constructor.
*/
DataMatrix()
{
}
/*! \fn virtual ~DataMatrix()
* \brief A destructor.
*/
virtual ~DataMatrix()
{
}
/*! \fn virtual void loadDataMatrix() =0;
* \brief A pure virtual method for loading data from an arff file.
*/
virtual void loadDataMatrix() =0;
/*! \fn virtual void saveDataMatrix(const char*) =0;
* \brief A pure virtual method for saving data to an arff file.
* \param file - a name of the file to save data to.
*/
virtual void saveDataMatrix(const char* file) =0;
};
#endif //!defined(DATAMATIRX_H)