chore: remove StdList and include list directly where needed

This commit is contained in:
sithlord48
2025-03-20 18:44:45 -04:00
committed by Nick Bolton
parent 003f87db9e
commit 42b16efdb9
8 changed files with 8 additions and 17 deletions

View File

@ -8,8 +8,8 @@
#pragma once
#include "arch/IArchMultithread.h"
#include "common/StdList.h"
#include <list>
#include <pthread.h>
#define ARCH_MULTITHREAD ArchMultithreadPosix

View File

@ -8,7 +8,8 @@
#pragma once
#include "arch/IArchMultithread.h"
#include "common/StdList.h"
#include <list>
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>

View File

@ -10,8 +10,8 @@
#include "arch/Arch.h"
#include "arch/IArchMultithread.h"
#include "common/Common.h"
#include "common/StdList.h"
#include <list>
#include <stdarg.h>
#define CLOG (Log::getInstance())

View File

@ -8,7 +8,6 @@ add_library(common STATIC
IInterface.h
StdExcept.h
StdIStream.h
StdList.h
StdMap.h
StdOStream.h
StdSet.h

View File

@ -1,10 +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
#include <list>

View File

@ -8,8 +8,8 @@
#pragma once
#include "base/EventTypes.h"
#include "common/StdList.h"
#include <list>
#include <vector>
//! FIFO of bytes

View File

@ -8,9 +8,10 @@
#pragma once
#include "arch/IArchNetwork.h"
#include "common/StdList.h"
#include "common/StdMap.h"
#include <list>
template <class T> class CondVar;
class Mutex;
class Thread;

View File

@ -7,11 +7,11 @@
#pragma once
#include "common/StdList.h"
#include "common/StdMap.h"
#include "deskflow/ClipboardTypes.h"
#include "deskflow/IClipboard.h"
#include <list>
#include <vector>
#if X_DISPLAY_MISSING