blob: ff31cee0bbac327c7f6c5e8a3bd962cbe21a9180 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Context.h
//
/////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2001-2002 David Ward
//
/////////////////////////////////////////////////////////////////////////////
#ifndef Context_h
#define Context_h
namespace Dasher {class CContext;}
class Dasher::CContext
{
public:
CContext() {};
virtual ~CContext() {};
};
#endif /* #ifndef Context_h */
|