[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/ClearFoundry/ClearScript/master/ClearScriptV8/RefCount.h [Back]  [Original]

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

#pragma once

//-----------------------------------------------------------------------------
// RefCount
//-----------------------------------------------------------------------------

class RefCount final
{
    PROHIBIT_COPY(RefCount)

public:

    explicit RefCount(size_t count);

    size_t Increment();
    size_t Decrement();

    ~RefCount();

private:

    class Impl;
    Impl* m_pImpl;
};

Web Proxy Viewer  |  New URL  |  Original Page