26 lines
536 B
C++
26 lines
536 B
C++
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#ifndef LINGODEC_RESOLVER_H
|
|
#define LINGODEC_RESOLVER_H
|
|
|
|
namespace LingoDec {
|
|
|
|
struct Script;
|
|
struct ScriptNames;
|
|
|
|
class ChunkResolver {
|
|
public:
|
|
ChunkResolver() {}
|
|
virtual ~ChunkResolver() {}
|
|
virtual Script *getScript(int32 id) = 0;
|
|
virtual ScriptNames *getScriptNames(int32 id) = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // LINGODEC_RESOLVER_H
|