initial commit

This commit is contained in:
2020-08-25 23:05:43 +03:00
commit 563f8a9a2d
42 changed files with 3866 additions and 0 deletions

20
cd_utils/cdutils_k.cpp Normal file
View File

@@ -0,0 +1,20 @@
#include "cdutils_k.h"
#include "cdutils_core.h"
using namespace CDUtils;
KInterface K;
KInterface::KInterface(): Interface(CDType::cdK) {
}
void KInterface::directChange(const CDType & k) {
core->K_DirectChange(k.path(), k.value());
}
void KInterface::directChange(const CDType & k, double v) {
core->K_DirectChange(k.path(), PIString::fromNumber(v));
}