File indexing completed on 2024-05-19 04:27:07

0001 /*
0002  * SPDX-FileCopyrightText: 2022 L. E. Segovia <amy@amyspark.me>
0003  *
0004  * SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef KIS_SUPPORTED_ARCHITECTURES_H
0008 #define KIS_SUPPORTED_ARCHITECTURES_H
0009 
0010 #include "kritamultiarch_export.h"
0011 
0012 #include <QString>
0013 
0014 class KRITAMULTIARCH_EXPORT KisSupportedArchitectures
0015 {
0016 public:
0017     static QString baseArchName();
0018 
0019     static QString bestArchName();
0020 
0021     static unsigned int bestArch();
0022 
0023     static QString supportedInstructionSets();
0024 };
0025 
0026 #endif // KIS_SUPPORTED_ARCHITECTURES_H