yhook: move ctor/dtor to cpp

Origin commit data
------------------
Commit: 07b39de268
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-02-20 (Sat, 20 Feb 2016)

Origin message was:
------------------
- yhook: move ctor/dtor to cpp
This commit is contained in:
vanhofen
2016-02-20 09:07:50 +01:00
parent caee20b1ad
commit f3bba7968d
2 changed files with 25 additions and 3 deletions

View File

@@ -13,6 +13,28 @@
#include "ylogging.h"
#include "helper.h"
//=============================================================================
// Constructor & Ceconstructor
//=============================================================================
CyhookHandler::CyhookHandler()
{
ContentLength = 0;
RangeStart = 0;
RangeEnd = -1;
cached = false;
keep_alive = 0;
_outIndent = 0;
status = HANDLED_NONE;
Method = M_UNKNOWN;
httpStatus = HTTP_NIL;
outType = plain;
LastModified=0;
}
CyhookHandler::~CyhookHandler()
{
}
//=============================================================================
// Initialization of static variables
//=============================================================================