summaryrefslogtreecommitdiffstats
path: root/src/include/debug-profiler.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-03 12:16:15 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-07 11:48:25 +0900
commit68a834008fb8d89f9cbf4ed3d7b9f9d0e99232b6 (patch)
tree7788db58e9254cf5f9942b41b4430d73682f1844 /src/include/debug-profiler.h
parent16bc99ab76f1b17af92b9187f33a3ad76dd649b2 (diff)
downloadtderadio-68a83400.tar.gz
tderadio-68a83400.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 7bfdcc0b8d382c142a59160bc87033c211da385d)
Diffstat (limited to 'src/include/debug-profiler.h')
-rw-r--r--src/include/debug-profiler.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/debug-profiler.h b/src/include/debug-profiler.h
index 1e46111..ae78e43 100644
--- a/src/include/debug-profiler.h
+++ b/src/include/debug-profiler.h
@@ -40,7 +40,7 @@ static __inline__ unsigned long long int rdtsc()
}
#endif
-class KDE_EXPORT Profiler
+class TDE_EXPORT Profiler
{
public:
Profiler();
@@ -77,14 +77,14 @@ protected:
};
-class KDE_EXPORT TimeProfiler : public Profiler
+class TDE_EXPORT TimeProfiler : public Profiler
{
protected:
long long getCounter() const { return rdtsc(); }
};
-class KDE_EXPORT MemProfiler : public Profiler
+class TDE_EXPORT MemProfiler : public Profiler
{
protected:
long long getCounter() const;
@@ -96,7 +96,7 @@ extern MemProfiler global_mem_profiler;
-class KDE_EXPORT BlockProfiler
+class TDE_EXPORT BlockProfiler
{
public:
BlockProfiler(const TQString &descr);