mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-17 14:31:30 +00:00
23 lines
305 B
C++
23 lines
305 B
C++
#pragma once
|
|
|
|
namespace perlbind {
|
|
|
|
namespace detail {
|
|
|
|
class xsub_stack;
|
|
struct function_base;
|
|
struct array_iterator;
|
|
struct hash_iterator;
|
|
|
|
} // namespace detail
|
|
|
|
class interpreter;
|
|
class package;
|
|
struct scalar;
|
|
struct scalar_proxy;
|
|
struct reference;
|
|
struct array;
|
|
struct hash;
|
|
|
|
} // namespace perlbind
|