deargui-vpl/applications/tests/main-test.cpp
2026-02-03 18:25:25 +01:00

11 lines
376 B
C++

#include "base.h"
// This is a stub implementation of the application's Main() function.
// It is required to resolve linker errors when building the test suite,
// as the test scaffolding pulls in the entire application framework which
// expects this function to exist. It will not be called during test execution.
int Main(const ArgsMap& args)
{
return 0;
}