build files and documentation: MIT images / sources: GPL-2.0-only breeze icons: LGPL-2.0-only Microsoft MSM file, vc redist license
24 lines
545 B
C++
24 lines
545 B
C++
/*
|
|
* 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 "arch/IArchString.h"
|
|
|
|
#define ARCH_STRING ArchStringUnix
|
|
|
|
//! Unix implementation of IArchString
|
|
class ArchStringUnix : public IArchString
|
|
{
|
|
public:
|
|
ArchStringUnix();
|
|
virtual ~ArchStringUnix();
|
|
|
|
// IArchString overrides
|
|
virtual EWideCharEncoding getWideCharEncoding();
|
|
};
|