aboutsummaryrefslogtreecommitdiff
path: root/src/libANGLE/CLObject.h
blob: 747004c91eb94f6f9de900da2c865b9345e4d554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// Copyright 2021 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// CLObject.h: Defines the cl::Object class, which is the base class of all ANGLE CL objects.

#ifndef LIBANGLE_CLOBJECT_H_
#define LIBANGLE_CLOBJECT_H_

#include "libANGLE/CLtypes.h"

namespace cl
{

class Object
{
  public:
    constexpr Object() {}
    ~Object() = default;
};

}  // namespace cl

#endif  // LIBANGLE_CLCONTEXT_H_