blob: 9aaf403dbfbdc42bbae8e2f9055fa1d0d804aa00 [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.
#ifndef APPLICATION_SRC_MANAGER_RUNTIME_METADATA_H_
#define APPLICATION_SRC_MANAGER_RUNTIME_METADATA_H_
#include <string>
namespace app {
class RuntimeMetadata {
public:
RuntimeMetadata();
~RuntimeMetadata();
bool Parse(const std::string& data);
const std::string& runner() const { return runner_; }
private:
std::string runner_;
};
} // namespace app
#endif // APPLICATION_SRC_MANAGER_RUNTIME_METADATA_H_