mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
Authors are not forced to use the clang-format setting, but should atleast be inspired by the style. The only thing which is now not allowed are tabs for ident/alignment!
25 lines
293 B
C++
25 lines
293 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
*/
|
|
|
|
|
|
#ifndef __VERBTBL_H
|
|
#define __VERBTBL_H
|
|
namespace Pol
|
|
{
|
|
namespace Bscript
|
|
{
|
|
class Verb
|
|
{
|
|
public:
|
|
char* verb;
|
|
int narg;
|
|
|
|
Verb( const char* name, int nargs );
|
|
};
|
|
|
|
int isInTable( Verb* table, int tableSize, const char* search, Verb** result );
|
|
}
|
|
}
|
|
#endif
|