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