]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/BooleanType.h
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.databoard / cpp / DataBoardTest / DataBoard / BooleanType.h
1 #pragma once
2
3 #include "DataType.h"
4
5 namespace Databoard {
6         namespace Type {
7
8                 class DATABOARD_API BooleanType : public DataType {
9                 public:
10                         BooleanType();
11
12                         virtual ~BooleanType();
13
14                         virtual std::string writeOut(int indent = 0);
15
16
17                 protected:
18
19                 };
20         }
21 }