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

24 lines
No EOL
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