]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/ValueObject.h
Fixed all line endings of the repository
[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 }