A platform for high-performance distributed tool and library development written in C++. It can be deployed in two different cluster modes: standalone or distributed. API for v0.5.0, released on June 13, 2018.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TransformedSet.cc
Go to the documentation of this file.
1 #ifndef TRANSFORMED_SET_CC
2 #define TRANSFORMED_SET_CC
3 
4 
5 #include "TransformedSet.h"
6 
7 namespace pdb {
8 
9 TransformedSet::TransformedSet (std::string databaseName,
10  std::string setName,
11  std::string transformationType,
12  std::string tcap,
13  int numPartitions) {
14 
15  this->databaseName = databaseName;
16  this->setName = setName;
17  this->transformationType = transformationType;
18  this->tcap = tcap;
19  this->numPartitions = numPartitions;
20 
21 }
22 
24 
25 
27 
28  return databaseName;
29 
30 }
31 
32 
34 
35  return setName;
36 
37 }
38 
39 
41 
42  return transformationType;
43 
44 }
45 
46 std::string TransformedSet::getTCAP() {
47 
48  return tcap;
49 
50 }
51 
52 
54 
55  return numPartitions;
56 
57 }
58 
59 
60 }
61 
62 
63 #endif
std::string databaseName
TransformedSet(std::string databaseName, std::string setName, std::string transformationType, std::string tcap, int numPartitions)
std::string transformationType
std::string getTransformationType()
std::string getSetName()
std::string getDatabaseName()
std::string getTCAP()