Program Listing for File DebugApp.hpp

Return to documentation for file (Src/GraphicsEngineOpenGL/debug/DebugApp.hpp)

#pragma once

#include <string>

class DebugApp
{
  public:
    DebugApp();

    bool areErrorPrintAll(const std::string &AdditionalArrayMessage = "Empty",
      const char *file = __FILE__,
      int line = __LINE__);

    bool arePreError(const std::string &AdditionalArrayMessage = "Empty",
      const char *file = __FILE__,
      int line = __LINE__);

    ~DebugApp();

  private:
};