From 9b76d10dbd777c14ce983696b290e9d323912b3f Mon Sep 17 00:00:00 2001 From: austriancoder Date: Mon, 13 Sep 2004 16:36:21 +0000 Subject: updated source comments --- dxr3memcpy.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dxr3memcpy.h b/dxr3memcpy.h index a78139b..54bd8b8 100644 --- a/dxr3memcpy.h +++ b/dxr3memcpy.h @@ -62,10 +62,10 @@ // ================================== struct memcpy_routine { - string name; - void *(* function)(void *to, const void *from, size_t len); - unsigned long long time; - uint32_t cpu_require; // caps from dxr3cpu.h + string name; ///< name of memcpy methode + void *(* function)(void *to, const void *from, size_t len); ///< our memcopy methode + unsigned long long time; ///< needed time for banchmark + uint32_t cpu_require; ///< caps from dxr3cpu.h }; // ================================== @@ -82,7 +82,7 @@ public: private: unsigned long long int Rdtsc(); - vector m_methods; + vector m_methods; ///< a std::vector with all methodes }; // ================================== -- cgit v1.2.3