This commit is contained in:
Michael Davidsaver
2019-12-11 14:19:27 -08:00
parent 50963f0a3e
commit a207a54ec1
4 changed files with 108 additions and 4 deletions
+2 -4
View File
@@ -13,6 +13,7 @@
#include <pvxs/server.h>
#include <pvxs/data.h>
#include <pvxs/nt.h>
#include <pvxs/log.h>
@@ -22,10 +23,7 @@ using namespace pvxs::server;
DEFINE_LOGGER(dummy,"dummyserv");
const Value mytype = TypeDef(TypeCode::Struct)
.begin()
.insert("value", TypeCode::Float64)
.create();
const Value mytype = nt::NTScalar{TypeCode::Int32}.build().create();
struct DummyHandler : public Handler
{