]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/VariantType.cpp
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / cpp / DataBoardTest / DataBoard / VariantType.cpp
1 #include "VariantType.h"
2
3 namespace Databoard {
4         namespace Type {
5
6                 VariantType::VariantType()
7                 {
8                 }
9
10                 VariantType::~VariantType()
11                 {
12                 }
13
14                 std::string VariantType::writeOut(int /*indent*/)
15                 {
16                         std::string s;
17
18                         s += "Variant";
19
20                         return s;
21                 }
22         }
23 }