jutils.h

来自「b tree code for index in the database d」· C头文件 代码 · 共 32 行

H
32
字号
//////////////////////////////////////////////////////////////////
///
/// (C) 2007: Yuriy Soroka <ysoroka@scalingweb.com>
///	      Anton Fedoruk <afedoruk@scalingweb.com>
///
//////////////////////////////////////////////////////////////////

#ifndef __JUtils_h__
#define __JUtils_h__

#include "time.h"

#ifdef WIN32
# define JSTREAM_EXPORT __declspec(dllexport) 
#else
# define JSTREAM_EXPORT
#endif

///
/// Jlobal utility methods
///

class JSTREAM_EXPORT JUtils
{
public:

	static time_t filetimeToUnixTime( int* fileTime );

};

#endif // __JUtils_h__

⌨️ 快捷键说明

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