mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
24 lines
338 B
C
24 lines
338 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "BfSystem.h"
|
||
|
|
||
|
NS_BF_BEGIN
|
||
|
|
||
|
class BfTargetTriple
|
||
|
{
|
||
|
public:
|
||
|
String mTargetTriple;
|
||
|
bool mParsed;
|
||
|
BfMachineType mMachineType;
|
||
|
|
||
|
public:
|
||
|
void Parse();
|
||
|
|
||
|
public:
|
||
|
BfTargetTriple();
|
||
|
BfTargetTriple(const StringImpl& targetTriple);
|
||
|
void Set(const StringImpl& targetTriple);
|
||
|
BfMachineType GetMachineType();
|
||
|
};
|
||
|
|
||
|
NS_BF_END
|