use pt::Stream instead of pt::TextStream as the output stream

This commit is contained in:
2024-05-30 00:01:59 +02:00
parent e026af9994
commit 9a3f6a6e36
33 changed files with 615 additions and 636 deletions

View File

@@ -5,7 +5,7 @@
*/
/*
* Copyright (c) 2018-2023, Tomasz Sowa
* Copyright (c) 2018-2024, Tomasz Sowa
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -35,7 +35,7 @@
#ifndef headerfile_morm_src_flatconnector
#define headerfile_morm_src_flatconnector
#include "textstream/textstream.h"
#include "textstream/stream.h"
#include "export.h"
@@ -52,7 +52,7 @@ public:
FlatConnector();
virtual ~FlatConnector();
virtual void to_text(pt::TextStream & stream, Model & model, Export exp);
virtual void to_text(pt::Stream & stream, Model & model, Export exp);
virtual void set_expression(FlatExpression & expression);
virtual FlatExpression * get_expression();