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