BV Portfolio — C++ Edition
// =============================================
// Enum BV Portfolio
// =============================================
namespace EnumBV {
enum class BV {
Astides_Investment_BV, // Vastgoed
Astides_Projects_BV, // Projectontwikkeling / bouwbedrijf
K97_Studios_BV, // Film- & musiekstudios
};
struct CompanyInfo {
BV id;
std::string naam;
std::string kvk;
std::string status = "Actief";
};
const CompanyInfo portfolio[] = {
{ BV::Astides_Investment_BV, "Astides Investment BV", "66539080" },
{ BV::Astides_Projects_BV, "Astides Projects BV", "98003135" },
{ BV::K97_Studios_BV, "K97 Studios BV", "95815279" }
};
inline std::string getStatus(BV bv) {
return "✅ Operationeel & Groeiend";
}
}
Onze digitale representatie van onze BV's