]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/Component.h
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / cpp / DataBoardTest / DataBoard / Component.h
1 #pragma once
2
3 #include "DataBoardAPI.h"
4
5 #include <string>
6
7 namespace Databoard {
8         namespace Type {
9
10                 class DataType;
11
12                 class DATABOARD_API Component {
13                 public:
14                         Component(std::string name, DataType* type);
15                         virtual ~Component();
16
17                         std::string getName();
18                         DataType* getDataBoard();
19
20                 protected:
21
22                         std::string name;
23                         DataType* type;
24
25                         bool usingBuiltInType;
26                 };
27         }
28 }