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
WriteUserSet.h
Go to the documentation of this file.
1 
2 #ifndef WRITE_USER_SET_H
3 #define WRITE_USER_SET_H
4 
5 // PRELOAD %WriteUserSet <Nothing>%
6 
7 #include "WriteUserSetBase.h"
8 
9 namespace pdb {
10 
15 template <class OutputClass>
16 class WriteUserSet : public WriteUserSetBase<OutputClass> {
17 public:
21  WriteUserSet () = default;
22 
28  WriteUserSet (std :: string dbName, std :: string setName) {
29  this->dbName = dbName;
30  this->setName = setName;
31  this->outputType = getTypeName<OutputClass>();
32  }
33 
34 };
35 }
36 
37 #endif
WriteUserSet(std::string dbName, std::string setName)
Definition: WriteUserSet.h:28
WriteUserSet()=default