[TASK] Introducing the ProtocolHandler

This commit is contained in:
Jan Philipp Timme
2010-11-28 00:04:35 +00:00
parent f3b1354aa2
commit bdd9f671ad
7 changed files with 84 additions and 4 deletions
@@ -0,0 +1,26 @@
<?php
/**
* The abstract ContentObject that will contain
* "parsed data" from the ProtocolHandler
* @author JPT
* @abstract
* @package Protocol
*/
abstract class Protocol_AbstractProtocolContentObject {
/**
* Contains the raw data.
* @var string
*/
public $rawData;
/**
* Default constructor.
* Sets the rawData field.
* @return void
*/
function __construct($rawData) {
$this->rawData = $rawData;
}
}
?>