30 lines
731 B
PHP
30 lines
731 B
PHP
<?php
|
|
##############################################################################
|
|
# Copyright (C) 2008
|
|
# ProbeStar Telematics, LLC.
|
|
# All Rights Reserved. Proprietary and Confidential.
|
|
#=============================================================================
|
|
# Description
|
|
#-----------------------------------------------------------------------------
|
|
# Details
|
|
##############################################################################
|
|
|
|
// A comment on a single line
|
|
|
|
# Another single line comment
|
|
|
|
/*
|
|
Using this method you can create a larger block of text and it will all be commented out
|
|
*/
|
|
|
|
/**
|
|
* \brief
|
|
* Name In/Out/In-Out Range
|
|
* \param one
|
|
* \param two
|
|
* \param three
|
|
* \return
|
|
*/
|
|
|
|
?>
|