Initial commit of files
This commit is contained in:
4
proto/TODO
Normal file
4
proto/TODO
Normal file
@ -0,0 +1,4 @@
|
||||
|
||||
TODO
|
||||
|
||||
Add SQL samples (MySQL).
|
||||
50
proto/c++/header.cpp
Normal file
50
proto/c++/header.cpp
Normal file
@ -0,0 +1,50 @@
|
||||
//****************************************************************************
|
||||
// Copyright (C) 2008
|
||||
// ProbeStar Telematics, LLC
|
||||
// All Rights Reserved. Proprietary and Confidential.
|
||||
//============================================================================
|
||||
/// \file
|
||||
/// \brief Description
|
||||
//----------------------------------------------------------------------------
|
||||
// Details
|
||||
//****************************************************************************
|
||||
|
||||
//****************************************************************************
|
||||
// includes
|
||||
//***************************************************************************/
|
||||
|
||||
//****************************************************************************
|
||||
// defines
|
||||
//***************************************************************************/
|
||||
|
||||
//****************************************************************************
|
||||
// macros
|
||||
//***************************************************************************/
|
||||
|
||||
//****************************************************************************
|
||||
// structs & typedefs
|
||||
//***************************************************************************/
|
||||
|
||||
//****************************************************************************
|
||||
// global constants
|
||||
//***************************************************************************/
|
||||
|
||||
//****************************************************************************
|
||||
// global variables
|
||||
//***************************************************************************/
|
||||
|
||||
//****************************************************************************
|
||||
// static constants
|
||||
//***************************************************************************/
|
||||
|
||||
//****************************************************************************
|
||||
// static variables
|
||||
//***************************************************************************/
|
||||
|
||||
//****************************************************************************
|
||||
// static prototypes
|
||||
//***************************************************************************/
|
||||
|
||||
//****************************************************************************
|
||||
// C++ functions
|
||||
//***************************************************************************/
|
||||
41
proto/c++/header.h
Normal file
41
proto/c++/header.h
Normal file
@ -0,0 +1,41 @@
|
||||
//****************************************************************************
|
||||
// Copyright (C) 2008
|
||||
// ProbeStar Telematics, LLC
|
||||
// All Rights Reserved. Proprietary and Confidential.
|
||||
//============================================================================
|
||||
/// \file
|
||||
/// \brief Description
|
||||
//----------------------------------------------------------------------------
|
||||
// Details
|
||||
//****************************************************************************
|
||||
|
||||
/* prevent multiple inclusions */
|
||||
#ifndef __HEADER_NAME__
|
||||
#define __HEADER_NAME__
|
||||
|
||||
/* includes *****************************************************************/
|
||||
|
||||
/* defines ******************************************************************/
|
||||
|
||||
/* macros *******************************************************************/
|
||||
|
||||
/* structs & typedefs *******************************************************/
|
||||
|
||||
/* c class definitions ******************************************************/
|
||||
|
||||
/**
|
||||
*
|
||||
* Class description
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* \brief
|
||||
* Name In/Out/In-Out Range
|
||||
* \param one
|
||||
* \param two
|
||||
* \param three
|
||||
* \return
|
||||
*/
|
||||
|
||||
#endif
|
||||
9
proto/c/func.c
Normal file
9
proto/c/func.c
Normal file
@ -0,0 +1,9 @@
|
||||
/**
|
||||
* \brief
|
||||
* Name In/Out/In-Out Range
|
||||
* \param one
|
||||
* \param two
|
||||
* \param three
|
||||
* \return
|
||||
*/
|
||||
|
||||
51
proto/c/header.c
Normal file
51
proto/c/header.c
Normal file
@ -0,0 +1,51 @@
|
||||
/*****************************************************************************
|
||||
* Copyright (C) 2008
|
||||
* ProbeStar Telematics, LLC
|
||||
* All Rights Reserved. Proprietary and Confidential.
|
||||
*============================================================================
|
||||
* Description
|
||||
*----------------------------------------------------------------------------
|
||||
* Details
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* includes
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* defines
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* macros
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* structs & typedefs
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* global constants
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* global variables
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* static constants
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* static variables
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* static prototypes
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* C functions
|
||||
*****************************************************************************/
|
||||
|
||||
|
||||
54
proto/c/header.h
Normal file
54
proto/c/header.h
Normal file
@ -0,0 +1,54 @@
|
||||
/*****************************************************************************
|
||||
* Copyright (C) 2008
|
||||
* ProbeStar Telematics, LLC
|
||||
* All Rights Reserved. Proprietary and Confidential.
|
||||
*============================================================================
|
||||
* Description
|
||||
*----------------------------------------------------------------------------
|
||||
* Details
|
||||
*****************************************************************************/
|
||||
|
||||
/* prevent multiple inclusions */
|
||||
#ifndef __HEADER_NAME__
|
||||
#define __HEADER_NAME__
|
||||
|
||||
/*****************************************************************************
|
||||
* includes
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* defines
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* macros
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* structs & typedefs
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* global constants
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* global variables
|
||||
*****************************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* C function prototypes
|
||||
*****************************************************************************/
|
||||
|
||||
/* export C functions to C++ */
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#ifdef __cpluscplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
29
proto/java/header.java
Normal file
29
proto/java/header.java
Normal file
@ -0,0 +1,29 @@
|
||||
/*****************************************************************************
|
||||
* Copyright (C) 2008
|
||||
* ProbeStar Telematics, LLC
|
||||
* All Rights Reserved. Proprietary and Confidential.
|
||||
*============================================================================
|
||||
* Description
|
||||
*----------------------------------------------------------------------------
|
||||
* Details
|
||||
*****************************************************************************/
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Description
|
||||
*
|
||||
* @param url an absolute URL giving the base location of the image
|
||||
* @param name the location of the image, relative to the url argument
|
||||
* @return the image at the specified URL
|
||||
* @see Image
|
||||
*/
|
||||
public Image getImage(URL url, String name) {
|
||||
try {
|
||||
return getImage(new URL(url, name));
|
||||
} catch (MalformedURLException e) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
9
proto/javascript/header.js
Normal file
9
proto/javascript/header.js
Normal file
@ -0,0 +1,9 @@
|
||||
/*****************************************************************************
|
||||
* Copyright (C) 2008
|
||||
* ProbeStar Telematics, LLC
|
||||
* All Rights Reserved. Proprietary and Confidential.
|
||||
*============================================================================
|
||||
* Description
|
||||
*----------------------------------------------------------------------------
|
||||
* Details
|
||||
*****************************************************************************/
|
||||
39
proto/perl/header.pl
Normal file
39
proto/perl/header.pl
Normal file
@ -0,0 +1,39 @@
|
||||
#!/usr/bin/perl -w
|
||||
##############################################################################
|
||||
# Copyright (C) 2008
|
||||
# ProbeStar Telematics, LLC.
|
||||
# All Rights Reserved. Proprietary and Confidential.
|
||||
#=============================================================================
|
||||
# Description
|
||||
#-----------------------------------------------------------------------------
|
||||
# Details
|
||||
##############################################################################
|
||||
|
||||
use strict;
|
||||
|
||||
##############################################################################
|
||||
# imported packages
|
||||
##############################################################################
|
||||
|
||||
##############################################################################
|
||||
# global constants
|
||||
##############################################################################
|
||||
|
||||
##############################################################################
|
||||
# global variables
|
||||
##############################################################################
|
||||
|
||||
##############################################################################
|
||||
# functions
|
||||
##############################################################################
|
||||
|
||||
##############################################################################
|
||||
# main body
|
||||
##############################################################################
|
||||
|
||||
sub main {
|
||||
|
||||
}
|
||||
|
||||
&main();
|
||||
0;
|
||||
29
proto/php/header.php
Normal file
29
proto/php/header.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?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
|
||||
*/
|
||||
|
||||
?>
|
||||
40
proto/python/header.py
Normal file
40
proto/python/header.py
Normal file
@ -0,0 +1,40 @@
|
||||
##############################################################################
|
||||
# Copyright (C) 2008
|
||||
# ProbeStar Telematics, LLC.
|
||||
# All Rights Reserved. Proprietary and Confidential.
|
||||
#=============================================================================
|
||||
# Description
|
||||
#-----------------------------------------------------------------------------
|
||||
# Details
|
||||
##############################################################################
|
||||
|
||||
## @package pyexample
|
||||
# Documentation for this module.
|
||||
#
|
||||
# More details.
|
||||
|
||||
##############################################################################
|
||||
# imported packages
|
||||
##############################################################################
|
||||
|
||||
##############################################################################
|
||||
# global constants
|
||||
##############################################################################
|
||||
|
||||
##############################################################################
|
||||
# global variables
|
||||
##############################################################################
|
||||
|
||||
##############################################################################
|
||||
# functions
|
||||
##############################################################################
|
||||
|
||||
##############################################################################
|
||||
# main body
|
||||
##############################################################################
|
||||
|
||||
## Documentation for a function.
|
||||
#
|
||||
# More details.
|
||||
def func():
|
||||
pass
|
||||
10
proto/shell/header.sh
Normal file
10
proto/shell/header.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
##############################################################################
|
||||
# Copyright (C) 2008
|
||||
# ProbeStar Telematics, LLC.
|
||||
# All Rights Reserved. Proprietary and Confidential.
|
||||
#=============================================================================
|
||||
# Description
|
||||
#-----------------------------------------------------------------------------
|
||||
# Details
|
||||
##############################################################################
|
||||
Reference in New Issue
Block a user