You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
309 B
C++
21 lines
309 B
C++
#pragma once
|
|
|
|
//#include "Common/Xjdef.h"
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include <fstream>
|
|
#include "direct.h"
|
|
|
|
class CXJObjectManagerLog
|
|
{
|
|
public:
|
|
CXJObjectManagerLog(void);
|
|
~CXJObjectManagerLog(void);
|
|
|
|
bool InitObjManagerLog();
|
|
void CloseObjManagerLog();
|
|
|
|
ofstream m_globalOfObjManagerLog;
|
|
};
|
|
|