⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 time.h

📁 数据挖掘经典的hierarchial clustering algorithm
💻 H
字号:
  All Rights Reserved.
  ========================================================================

  Under no circumstances is this software to be copied, distributed,
  or altered in any way without prior permission from the DEVise
  Development Group.
*/

/*
  $Id: Time.h,v 1.3 1995/12/02 20:56:09 jussi Exp $

  $Log: Time.h,v $
  Revision 1.3  1995/12/02 20:56:09  jussi
  Substituted DeviseTime for Time and added copyright notice.

  Revision 1.2  1995/09/05 21:13:06  jussi
  Added/updated CVS header.
*/

/*
   Time.h: keeps track of current time in terms of # of milliseconds
   since the beginning of the program
*/

#ifndef Time_h
#define Time_h

#include <sys/time.h>

#include "Journal.h"

class DeviseTime {
public:
  static void Init();

  static long Now();

private:
  static struct timeval _beginning; /* time of day at the beginning */
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -