mirror of https://github.com/CGAL/cgal
29 lines
607 B
C
29 lines
607 B
C
// ======================================================================
|
|
//
|
|
// Copyright (c) 1997 The CGAL Consortium
|
|
//
|
|
// ----------------------------------------------------------------------
|
|
//
|
|
// release :
|
|
// release_date :
|
|
//
|
|
// file : config/testfiles/template.C
|
|
// source :
|
|
// revision : 1.11
|
|
// revision_date : 29 Mar 1998
|
|
// author(s) : various
|
|
//
|
|
// coordinator : Utrecht University
|
|
//
|
|
// ======================================================================
|
|
|
|
#include "template.h"
|
|
|
|
template <class T>
|
|
T A<T>::square(const T& t)
|
|
{
|
|
return t*t;
|
|
}
|
|
|
|
// EOF //
|