9#ifndef _UNITRANSACTION_H
10#define _UNITRANSACTION_H
12#include "unibachelorgen.h"
13#include "uniconfroot.h"
14#include "unitransactiongen.h"
15#include "uniunwrapgen.h"
23 friend class UniConf::Iter;
24 friend class UniConf::RecursiveIter;
27 UniTransaction(
const UniConf &base)
28 : UniConfRoot(new UniTransactionGen(new UniBachelorGen(
29 new UniUnwrapGen(base))), false)
36 UniTransaction(
const UniTransaction &base)
37 : UniConfRoot(new UniTransactionGen(new UniBachelorGen(
38 new UniUnwrapGen(base))), false)
Represents the root of a hierarhical registry consisting of pairs of UniConfKeys and associated strin...
Wraps an existing UniConf tree with a transaction generator.