AUI Framework  develop
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
examples/ui/contacts/src/model/PredefinedContacts.h
Note
This Source File belongs to AUI Contacts Example. Please follow the link for example explanation.
// AUI Framework - Declarative UI toolkit for modern C++20
// Copyright (C) 2020-2025 Alex2772 and Contributors
//
// SPDX-License-Identifier: MPL-2.0
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include "Contact.h"
namespace predefined {
static constexpr auto DISCLAIMER = "Any similarity to actual persons, living or dead, that appear in this C++ program, are purely coincidental";
inline std::array PERSONS = {
  Contact{ .displayName = "Bryce Adelstein Lelbach" },
  Contact{ .displayName = "Matt Austern" },
  Contact{ .displayName = "Aaron Ballman" },
  Contact{ .displayName = "JF Bastien" },
  Contact{ .displayName = "Dean Michael Berris" },
  Contact{ .displayName = "Hans Boehm" },
  Contact{ .displayName = "Chandler Carruth" },
  Contact{ .displayName = "Stephen D. Clamage" },
  Contact{ .displayName = "Ben Craig" },
  Contact{ .displayName = "Guy Davidson" },
  Contact{ .displayName = "Hana Dusíková" },
  Contact{ .displayName = "Stefanus Du Toit" },
  Contact{ .displayName = "Glen Fernandes" },
  Contact{ .displayName = "Marco Foco" },
  Contact{ .displayName = "J. Daniel Garcia" },
  Contact{ .displayName = "Peter Gottschling" },
  Contact{ .displayName = "Bernhard Manfred Gruber" },
  Contact{ .displayName = "Michael Hava" },
  Contact{ .displayName = "Howard Hinnant" },
  Contact{ .displayName = "Tom Honermann" },
  Contact{ .displayName = "Erich Keane" },
  Contact{ .displayName = "Kyle Kloepper" },
  Contact{ .displayName = "Dietmar Kühl" },
  Contact{ .displayName = "Inbal Levi" },
  Contact{ .displayName = "Lisa Lippincott" },
  Contact{ .displayName = "William M. (Mike) Miller" },
  Contact{ .displayName = "Clark Nelson" },
  Contact{ .displayName = "Eric Niebler" },
  Contact{ .displayName = "Roger Orr" },
  Contact{ .displayName = "P.J. Plauger" },
  Contact{ .displayName = "Antony Polukhin" },
  Contact{ .displayName = "Mateusz Pusz" },
  Contact{ .displayName = "Nina Dinka Ranns" },
  Contact{ .displayName = "Bill Seymour" },
  Contact{ .displayName = "Peter Sommerlad" },
  Contact{ .displayName = "Bryan St. Amour" },
  Contact{ .displayName = "Bjarne Stroustrup" },
  Contact{ .displayName = "Herb Sutter" },
  Contact{ .displayName = "Andrew Sutton" },
  Contact{ .displayName = "Daveed Vandevoorde" },
  Contact{ .displayName = "JC van Winkel" },
  Contact{ .displayName = "Vassil Vassilev" },
  Contact{ .displayName = "Ville Voutilainen" },
  Contact{ .displayName = "Michael Wong" },
  Contact{ .displayName = "Jeffrey Yasskin" },
  Contact{ .displayName = "Niall Douglas" },
};
}