]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/ValueObject.h
Change jersey back to 2.25.1 from 2.26 to fix resource-locator problems
[simantics/platform.git] / bundles / org.simantics.databoard / cpp / DataBoardTest / DataBoard / ValueObject.h
1 #pragma once
2
3 namespace Databoard {
4         namespace Value {
5                 class DATABOARD_API ValueObject {
6
7                 public:
8                         ValueObject();
9                         virtual ~ValueObject();
10
11                         void* getObject();
12                         DataType* type();
13
14                 protected:
15                         void* object;
16                 };
17         }
18 }