[ROCm/clr commit: 3694ab2ce8]
Этот коммит содержится в:
foreman
2014-07-04 16:17:05 -04:00
родитель b0b5b33fcf
Коммит f80f2f233c
351 изменённых файлов: 113713 добавлений и 1 удалений
+33
Просмотреть файл
@@ -0,0 +1,33 @@
//
// Copyright (c) 2008 Advanced Micro Devices, Inc. All rights reserved.
//
#ifndef COUNTERS_HPP_
#define COUNTERS_HPP_
#include "top.hpp"
namespace amd {
/*! \addtogroup Runtime
* @{
*
* \addtogroup Devicecounter
* @{
*/
/*! \class Counter
*
* \brief The container class for the performance counters
*/
class Counter : public RuntimeObject
{
public:
//! RTTI internal implementation
virtual ObjectType objectType() const {return ObjectTypeCounter;}
};
/*@}*/
/*@}*/ } // namespace amd
#endif // COUNTERS_HPP_