19 lines
599 B
C++
19 lines
599 B
C++
/* -----------------------------------------------------------------------------
|
|
GSFramework
|
|
Copyright 2001-2013 Emmanuel Julien. All Rights Reserved.
|
|
----------------------------------------------------------------------------- */
|
|
|
|
|
|
#include "log/log_scope.h"
|
|
#include "log/log.h"
|
|
|
|
using namespace GS;
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
LogScope::LogScope(const char *s, const char *e) : exit(e)
|
|
{ __LOG_H__ << s; }
|
|
LogScope::~LogScope()
|
|
{ __LOG_H__ << exit; }
|
|
//------------------------------------------------------------------------------
|