1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00
Beef/IDEHelper/Compiler/BfTargetTriple.h

24 lines
338 B
C
Raw Normal View History

#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