ScummVM API documentation
resolver.h
1 /*
2  * This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at https://mozilla.org/MPL/2.0/.
5  */
6 
7 #ifndef LINGODEC_RESOLVER_H
8 #define LINGODEC_RESOLVER_H
9 
10 namespace LingoDec {
11 
12 struct Script;
13 struct ScriptNames;
14 
16 public:
17  ChunkResolver() {}
18  virtual ~ChunkResolver() {}
19  virtual Script *getScript(int32 id) = 0;
20  virtual ScriptNames *getScriptNames(int32 id) = 0;
21 };
22 
23 }
24 
25 #endif // LINGODEC_RESOLVER_H
Definition: names.h:44
Definition: script.h:38
Definition: cast.h:33
Definition: resolver.h:15