ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Download File
|
View Changeset
|
Root Listing
root
/
ccscs20
/
Visitor.hpp
Revision:
10
Committed:
2004-05-14T13:57:49-07:00
(21 years, 1 month ago) by
Douglas Thrift
File size:
207 byte(s)
Log Message:
Visit this!
File Contents
#
User
Rev
Content
1
Douglas Thrift
10
// Visitor
2
//
3
// Douglas Thrift
4
//
5
// $Id$
6
7
#ifndef _Visitor_hpp_
8
#define _Visitor_hpp_
9
10
template
<
typename
Type
>
11
class
Visitor
12
{
13
public
:
14
virtual
void
visit
(
const
Type
&
value
)
{}
15
};
16
17
#endif
// _Visitor_hpp_