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