Initial commit of files

This commit is contained in:
2021-01-22 10:16:20 -05:00
parent 32d165ec8f
commit ed92211680
534 changed files with 68563 additions and 19 deletions

4
proto/TODO Normal file
View File

@ -0,0 +1,4 @@
TODO
Add SQL samples (MySQL).

50
proto/c++/header.cpp Normal file
View 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
View 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
View 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
View 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
View 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
View 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;
}
}

View 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
View 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
View 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
View 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
View File

@ -0,0 +1,10 @@
#!/bin/sh
##############################################################################
# Copyright (C) 2008
# ProbeStar Telematics, LLC.
# All Rights Reserved. Proprietary and Confidential.
#=============================================================================
# Description
#-----------------------------------------------------------------------------
# Details
##############################################################################