blob: 4cd788048e7072815bc597e434209f238b5f9a69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// CustomAlphabet.h
//
/////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2002 Iain Murray
//
/////////////////////////////////////////////////////////////////////////////
#ifndef __CustomAlphabet_h__
#define __CustomAlphabet_h__
#include "Alphabet.h"
#include "AlphIO.h"
namespace Dasher {class CCustomAlphabet;}
class Dasher::CCustomAlphabet : public Dasher::CAlphabet
{
public:
CCustomAlphabet(const CAlphIO::AlphInfo& AlphInfo);
};
#endif /* #ifndef __CustomAlphabet_h__ */
|