Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/src/include/firebase/app.h
Original file line number Diff line number Diff line change
Expand Up @@ -572,9 +572,10 @@ class App {
static App* GetInstance(const char* name);

#if !defined(DOXYGEN)
// Hidden from the public documentation for now
/// Get all the apps, including the default one.
static std::vector<App*> GetApps();
#endif //! defined(DOXYGEN), to hide the api from public documentation.
#endif // !defined(DOXYGEN)

#ifndef SWIG
// <SWIG>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ class AppAttestProviderFactoryInternal;
/// AppAttestProviders. This is the default implementation.
class AppAttestProviderFactory : public AppCheckProviderFactory {
public:
#if !defined(DOXYGEN)
AppAttestProviderFactory(const AppAttestProviderFactory&) = delete;
AppAttestProviderFactory& operator=(const AppAttestProviderFactory&) = delete;
#endif // !defined(DOXYGEN)

/// Gets an instance of this class for installation into a
/// firebase::app_check::AppCheck instance.
Expand Down
2 changes: 2 additions & 0 deletions app_check/src/include/firebase/app_check/debug_provider.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ class DebugAppCheckProviderFactoryInternal;
/// NOTE: Do not use the debug provider in applications used by real users.
class DebugAppCheckProviderFactory : public AppCheckProviderFactory {
public:
#if !defined(DOXYGEN)
DebugAppCheckProviderFactory(const DebugAppCheckProviderFactory&) = delete;
DebugAppCheckProviderFactory& operator=(const DebugAppCheckProviderFactory&) =
delete;
#endif // !defined(DOXYGEN)

/// Gets an instance of this class for installation into a
/// firebase::app_check::AppCheck instance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ class DeviceCheckProviderFactoryInternal;
/// DeviceCheckProviders. This is the default implementation.
class DeviceCheckProviderFactory : public AppCheckProviderFactory {
public:
#if !defined(DOXYGEN)
DeviceCheckProviderFactory(const DeviceCheckProviderFactory&) = delete;
DeviceCheckProviderFactory& operator=(const DeviceCheckProviderFactory&) =
delete;
#endif // !defined(DOXYGEN)

/// Gets an instance of this class for installation into a
/// firebase::app_check::AppCheck instance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ class PlayIntegrityProviderFactoryInternal;
/// PlayIntegrityProviders. This is the default implementation.
class PlayIntegrityProviderFactory : public AppCheckProviderFactory {
public:
#if !defined(DOXYGEN)
PlayIntegrityProviderFactory(const PlayIntegrityProviderFactory&) = delete;
PlayIntegrityProviderFactory& operator=(const PlayIntegrityProviderFactory&) =
delete;
#endif // !defined(DOXYGEN)

/// Gets an instance of this class for installation into a
/// firebase::app_check::AppCheck instance.
Expand Down