skia2/include/utils/win/SkAutoCoInitialize.h
bungeman f3c15b7cfc Move SkTemplates.h to private.
SkTemplates.h contains a number of Skia specific utilities which are
not designed for external use. In addition to reducing the external
support burden, this will allow Skia to freely refactor this file.

Review URL: https://codereview.chromium.org/1272293004
2015-08-19 11:56:48 -07:00

27 lines
492 B
C++

/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkAutoCo_DEFINED
#define SkAutoCo_DEFINED
#include "SkTypes.h"
/**
* An instance of this class initializes COM on creation
* and closes the COM library on destruction.
*/
class SkAutoCoInitialize : SkNoncopyable {
private:
HRESULT fHR;
public:
SkAutoCoInitialize();
~SkAutoCoInitialize();
bool succeeded();
};
#endif