Newer
Older
Matthieu Kermagoret
committed
** Copyright 2011-2013 Centreon
Matthieu Kermagoret
committed
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
Matthieu Kermagoret
committed
** http://www.apache.org/licenses/LICENSE-2.0
Matthieu Kermagoret
committed
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
Matthieu Kermagoret
committed
** For more information : contact@centreon.com
*/
#ifndef CCCP_CHECKS_TIMEOUT_HH
#include <cstddef>
#include "com/centreon/connector/perl/namespace.hh"
#include "com/centreon/task.hh"
namespace checks {
// Forward declaration.
class check;
/**
* @class timeout timeout.hh "com/centreon/connector/perl/checks/timeout.hh"
* @brief Check timeout.
*
* Task executed when a check timeouts.
*/
class timeout : public com::centreon::task {
check* _check;
bool _final;
public:
timeout(check* chk = NULL, bool final = false);
timeout(timeout const& t) = delete;
timeout& operator=(timeout const& t) = delete;
void run();
};
} // namespace checks