27 #ifndef SALOMEDS_AttributeTableOfReal_HeaderFile
28 #define SALOMEDS_AttributeTableOfReal_HeaderFile
35 #include <SALOMEconfig.h>
36 #include CORBA_SERVER_HEADER(SALOMEDS)
37 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
48 virtual void SetTitle(
const std::string& theTitle);
50 virtual void SetRowTitle(
int theIndex,
const std::string& theTitle);
52 virtual void SetRowTitles(
const std::vector<std::string>& theTitles);
54 virtual void SetColumnTitle(
int theIndex,
const std::string& theTitle);
56 virtual void SetColumnTitles(
const std::vector<std::string>& theTitles);
59 virtual void SetRowUnit(
int theIndex,
const std::string& theUnit);
61 virtual void SetRowUnits(
const std::vector<std::string>& theUnits);
66 virtual void AddRow(
const std::vector<double>& theData);
67 virtual void SetRow(
int theRow,
const std::vector<double>& theData);
68 virtual std::vector<double>
GetRow(
int theRow);
69 virtual void AddColumn(
const std::vector<double>& theData);
70 virtual void SetColumn(
int theColumn,
const std::vector<double>& theData);
71 virtual std::vector<double>
GetColumn(
int theColumn);
72 virtual void PutValue(
double theValue,
int theRow,
int theColumn);
73 virtual bool HasValue(
int theRow,
int theColumn);
74 virtual double GetValue(
int theRow,
int theColumn);
75 virtual void RemoveValue(
int theRow,
int theColumn);
84 virtual void SwapCells(
int theRow1,
int theColumn1,
int theRow2,
int theColumn2);
85 virtual void SwapRows(
int theRow1,
int theRow2);
86 virtual void SwapColumns(
int theColumn1,
int theColumn2);
Definition: SALOMEDSClient_AttributeTableOfReal.hxx:36
SortOrder
Definition: SALOMEDSClient_AttributeTable.hxx:34
SortPolicy
Definition: SALOMEDSClient_AttributeTable.hxx:39
Definition: SALOMEDSImpl_AttributeTableOfReal.hxx:43
Definition: SALOMEDS_AttributeTableOfReal.hxx:42
virtual void SwapColumns(int theColumn1, int theColumn2)
Definition: SALOMEDS_AttributeTableOfReal.cxx:611
virtual void SwapRows(int theRow1, int theRow2)
Definition: SALOMEDS_AttributeTableOfReal.cxx:595
virtual void PutValue(double theValue, int theRow, int theColumn)
Definition: SALOMEDS_AttributeTableOfReal.cxx:388
virtual void SetRowTitle(int theIndex, const std::string &theTitle)
Definition: SALOMEDS_AttributeTableOfReal.cxx:64
virtual void AddColumn(const std::vector< double > &theData)
Definition: SALOMEDS_AttributeTableOfReal.cxx:328
virtual std::vector< int > SortColumn(int theColumn, SortOrder theOrder, SortPolicy thePolicy)
Definition: SALOMEDS_AttributeTableOfReal.cxx:501
virtual void SetColumnTitle(int theIndex, const std::string &theTitle)
Definition: SALOMEDS_AttributeTableOfReal.cxx:125
virtual void SetRowUnits(const std::vector< std::string > &theUnits)
Definition: SALOMEDS_AttributeTableOfReal.cxx:213
virtual int GetNbColumns()
Definition: SALOMEDS_AttributeTableOfReal.cxx:256
virtual void SwapCells(int theRow1, int theColumn1, int theRow2, int theColumn2)
Definition: SALOMEDS_AttributeTableOfReal.cxx:579
virtual std::vector< std::string > GetRowTitles()
Definition: SALOMEDS_AttributeTableOfReal.cxx:109
virtual std::vector< int > SortRow(int theRow, SortOrder theOrder, SortPolicy thePolicy)
Definition: SALOMEDS_AttributeTableOfReal.cxx:475
virtual std::string GetRowUnit(int theIndex)
Definition: SALOMEDS_AttributeTableOfReal.cxx:195
SALOMEDS_AttributeTableOfReal(SALOMEDSImpl_AttributeTableOfReal *theAttr)
Definition: SALOMEDS_AttributeTableOfReal.cxx:31
virtual bool HasValue(int theRow, int theColumn)
Definition: SALOMEDS_AttributeTableOfReal.cxx:405
virtual void SetColumnTitles(const std::vector< std::string > &theTitles)
Definition: SALOMEDS_AttributeTableOfReal.cxx:153
virtual std::vector< int > GetRowSetIndices(int theRow)
Definition: SALOMEDS_AttributeTableOfReal.cxx:450
virtual int GetNbRows()
Definition: SALOMEDS_AttributeTableOfReal.cxx:245
virtual std::vector< double > GetColumn(int theColumn)
Definition: SALOMEDS_AttributeTableOfReal.cxx:372
virtual std::vector< std::string > GetColumnTitles()
Definition: SALOMEDS_AttributeTableOfReal.cxx:169
virtual void RemoveValue(int theRow, int theColumn)
Definition: SALOMEDS_AttributeTableOfReal.cxx:434
virtual void AddRow(const std::vector< double > &theData)
Definition: SALOMEDS_AttributeTableOfReal.cxx:267
virtual std::vector< int > SortByRow(int theRow, SortOrder theOrder, SortPolicy thePolicy)
Definition: SALOMEDS_AttributeTableOfReal.cxx:527
virtual std::vector< double > GetRow(int theRow)
Definition: SALOMEDS_AttributeTableOfReal.cxx:311
virtual void SetColumn(int theColumn, const std::vector< double > &theData)
Definition: SALOMEDS_AttributeTableOfReal.cxx:350
virtual double GetValue(int theRow, int theColumn)
Definition: SALOMEDS_AttributeTableOfReal.cxx:416
virtual std::string GetColumnTitle(int theIndex)
Definition: SALOMEDS_AttributeTableOfReal.cxx:135
virtual void SetTitle(const std::string &theTitle)
Definition: SALOMEDS_AttributeTableOfReal.cxx:43
virtual std::vector< int > SortByColumn(int theColumn, SortOrder theOrder, SortPolicy thePolicy)
Definition: SALOMEDS_AttributeTableOfReal.cxx:553
virtual void SetNbColumns(int theNbColumns)
Definition: SALOMEDS_AttributeTableOfReal.cxx:466
~SALOMEDS_AttributeTableOfReal()
Definition: SALOMEDS_AttributeTableOfReal.cxx:39
virtual std::string GetTitle()
Definition: SALOMEDS_AttributeTableOfReal.cxx:53
virtual std::string GetRowTitle(int theIndex)
Definition: SALOMEDS_AttributeTableOfReal.cxx:74
virtual std::vector< std::string > GetRowUnits()
Definition: SALOMEDS_AttributeTableOfReal.cxx:229
virtual void SetRowTitles(const std::vector< std::string > &theTitles)
Definition: SALOMEDS_AttributeTableOfReal.cxx:92
virtual void SetRow(int theRow, const std::vector< double > &theData)
Definition: SALOMEDS_AttributeTableOfReal.cxx:289
virtual void SetRowUnit(int theIndex, const std::string &theUnit)
Definition: SALOMEDS_AttributeTableOfReal.cxx:185
Definition: SALOMEDS_GenericAttribute.hxx:40