This commit is contained in:
biosvos
2026-08-07 17:38:18 +09:00
commit 873193a243
9613 changed files with 2755992 additions and 0 deletions
@@ -0,0 +1,41 @@
/***************************************************************************
LoggerTest.h
-----------------------------------------
begin : 2011/10/27
copyright : (C) 2005 SolutionBox Inc.
author : Service 1 Team
email : svc1@solbox.com
version : 1.0
CopyRight(C) 2005 SolutionBox Inc. All Rights reserved.
Redistribution and use in source and binary forms, with or with out
modification, are not permitted in outside of SolutionBox Inc.
***************************************************************************/
#ifndef __LOGGERTEST_H__
#define __LOGGERTEST_H__
class CLoggerTest
{
// Attributes
private:
protected:
public:
// Operations
private:
bool TestLoggerInit();
void TestLogging();
protected:
public:
CLoggerTest();
virtual ~CLoggerTest();
void Run();
};
#endif // __LOGGERTEST_H__