Molybden API
Loading...
Searching...
No Matches
app_launch_info.hpp
1// Copyright (c) 2000-2025 TeamDev. All rights reserved.
2// TeamDev PROPRIETARY and CONFIDENTIAL.
3// Use is subject to license terms.
4
5#ifndef MOLYBDEN_APP_LAUNCH_INFO_HPP
6#define MOLYBDEN_APP_LAUNCH_INFO_HPP
7
8#include <string>
9
10namespace molybden {
11
15struct LaunchInfo {
20 bool is_first_launch = true;
21
27};
28
29} // namespace molybden
30
31#endif // MOLYBDEN_APP_LAUNCH_INFO_HPP
The application launch information.
Definition app_launch_info.hpp:15
std::string last_launched_version
The version of the application that was launched last time.
Definition app_launch_info.hpp:26
bool is_first_launch
Indicates if the application is launched for the first time in this environment.
Definition app_launch_info.hpp:20