Sha256: 8d86400f73f59fd71e98a1ec60b654d520debf5e4ab483461235c37185f9f511

Contents?: true

Size: 993 Bytes

Versions: 5

Compression:

Stored size: 993 Bytes

Contents

// Copyright 2016 The Chromium 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 {{"_".join(config.protocol.namespace)}}_Object_h
#define {{"_".join(config.protocol.namespace)}}_Object_h

//#include "ErrorSupport.h"
//#include "Forward.h"
//#include "Values.h"

{% for namespace in config.protocol.namespace %}
namespace {{namespace}} {
{% endfor %}

class {{config.lib.export_macro}} Object {
public:
    static std::unique_ptr<Object> fromValue(protocol::Value*, ErrorSupport*);
    ~Object();

    std::unique_ptr<protocol::DictionaryValue> toValue() const;
    std::unique_ptr<Object> clone() const;
private:
    explicit Object(std::unique_ptr<protocol::DictionaryValue>);
    std::unique_ptr<protocol::DictionaryValue> m_object;
};

{% for namespace in config.protocol.namespace %}
} // namespace {{namespace}}
{% endfor %}

#endif // !defined({{"_".join(config.protocol.namespace)}}_Object_h)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
libv8-6.0.286.54.1 vendor/v8/third_party/inspector_protocol/lib/Object_h.template
libv8-6.0.286.54.0 vendor/v8/third_party/inspector_protocol/lib/Object_h.template
libv8-6.0.286.54.0beta2 vendor/v8/third_party/inspector_protocol/lib/Object_h.template
libv8-6.0.286.54.0beta1 vendor/v8/third_party/inspector_protocol/lib/Object_h.template
libv8-6.0.286.44.0beta1 vendor/v8/third_party/inspector_protocol/lib/Object_h.template