17 #include <boost/tuple/tuple.hpp>
18 #include <boost/tuple/tuple_comparison.hpp>
20 namespace makVrv {
namespace oe {
namespace CDB
36 DatasetInfo(
int Dataset,
int ComponentSelector1,
int ComponentSelector2) :
69 void setDatasetInfo(
int Dataset,
int ComponentSelector1,
int ComponentSelector2)
90 std::stringstream format_stream_2;
91 format_stream_2 <<
"[D" << std::setfill(
'0') << std::setw(3) <<
myDataset;
94 format_stream_2 <<
"]";
std::string myStringRepresentation
CDB Dataset string information representation (Dxxx_Sxxx_Txxx)
Definition: DtCDBDatasetInfo.h:105
DatasetInfo()
CTOR.
Definition: DtCDBDatasetInfo.h:28
int getDataset() const
Return the CDB dataset code (Dxxx)
Definition: DtCDBDatasetInfo.h:79
int myComponentSelector1
CDB component selector 1 (Sxxx)
Definition: DtCDBDatasetInfo.h:101
std::string str() const
Return the string representation of this dataset.
Definition: DtCDBDatasetInfo.h:67
void setDataset(int dataset)
Set the CDB dataset code (Dxxx)
Definition: DtCDBDatasetInfo.h:77
DatasetInfo(int Dataset, int ComponentSelector1, int ComponentSelector2)
CTOR.
Definition: DtCDBDatasetInfo.h:36
int getComponentSelector1() const
Return the CDB component selector 1 (Sxxx)
Definition: DtCDBDatasetInfo.h:81
CDB Dataset information class.
Definition: DtCDBDatasetInfo.h:23
void setStr()
Get the string representation of this dataset.
Definition: DtCDBDatasetInfo.h:88
int myComponentSelector2
CDB component selector 2 (Txxx)
Definition: DtCDBDatasetInfo.h:103
friend bool operator<(const DatasetInfo &lhs, const DatasetInfo &rhs)
Smaller than operator for the Dataset Info class.
Definition: DtCDBDatasetInfo.h:45
void setDatasetInfo(int Dataset, int ComponentSelector1, int ComponentSelector2)
Change the dataset information.
Definition: DtCDBDatasetInfo.h:69
int getComponentSelector2() const
Return the CDB component selector 2 (Txxx)
Definition: DtCDBDatasetInfo.h:83
friend bool operator==(const DatasetInfo &lhs, const DatasetInfo &rhs)
== than operator for the Dataset Info class
Definition: DtCDBDatasetInfo.h:51
int myDataset
CDB dataset code (Dxxx)
Definition: DtCDBDatasetInfo.h:96