chore: remove StdIStream and include istream directly where needed

This commit is contained in:
sithlord48
2025-03-20 19:00:01 -04:00
committed by Nick Bolton
parent 498ffe85c3
commit 854787e6b3
2 changed files with 0 additions and 15 deletions

View File

@ -7,7 +7,6 @@ add_library(common STATIC
Common.h
IInterface.h
StdExcept.h
StdIStream.h
StdOStream.h
Settings.h
Settings.cpp

View File

@ -1,14 +0,0 @@
/*
* Deskflow -- mouse and keyboard sharing utility
* SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd.
* SPDX-FileCopyrightText: (C) 2002 Chris Schoeneman
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
*/
#pragma once
#if HAVE_ISTREAM
#include <istream>
#else
#include <iostream>
#endif