]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/BooleanType.cpp
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.databoard / cpp / DataBoardTest / DataBoard / BooleanType.cpp
1 #include "BooleanType.h"
2
3 namespace Databoard {
4         namespace Type {
5
6                 BooleanType::BooleanType()
7                 {
8                 }
9
10                 BooleanType::~BooleanType()
11                 {
12                 }
13
14
15                 std::string BooleanType::writeOut(int /*indent*/)
16                 {
17                         std::string s;
18
19                         s.append("Boolean");
20
21                         return s;
22                 }
23         }
24 }