blob: 8d9ab01eaa5ab47c092468df8bbdf0f9ddbf3d2a [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#pragma once
#include <stdint.h>
#include <string>
#include <utility>
namespace time_zone {
class Timezone {
public:
bool Run();
bool UpdateSystemTime(uint8_t tries);
Timezone(std::string server_config_file)
: server_config_file_(std::move(server_config_file)) {}
~Timezone() = default;
private:
std::string server_config_file_;
};
} // namespace time_zone