1// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CLOUD_PRINT_GCP20_PROTOTYPE_COMMAND_LINE_READER_H_
6#define CLOUD_PRINT_GCP20_PROTOTYPE_COMMAND_LINE_READER_H_
7
8#include <string>
9
10#include "base/basictypes.h"
11
12namespace command_line_reader {
13
14uint16 ReadHttpPort(uint16 default_value);
15
16uint32 ReadTtl(uint32 default_value);
17
18std::string ReadServiceNamePrefix(const std::string& default_value);
19
20std::string ReadDomainName(const std::string& default_value);
21
22std::string ReadStatePath(const std::string& default_value);
23
24}  // namespace command_line_reader
25
26#endif  // CLOUD_PRINT_GCP20_PROTOTYPE_COMMAND_LINE_READER_H_
27
28