Add a move-generator API.
[tagua/yd.git] / src / icslistener.h
blob4b1a1d199f977f196037eddbeea223a817249b47
1 /*
2 Copyright (c) 2006 Paolo Capriotti <p.capriotti@gmail.com>
3 (c) 2006 Maurizio Monge <maurizio.monge@kdemail.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9 */
11 #ifndef ICSLISTENER_H
12 #define ICSLISTENER_H
14 #include <core/state_fwd.h>
16 class PositionInfo;
17 class PoolInfo;
18 class PGN;
20 class ICSListener {
21 public:
22 virtual ~ICSListener() { }
23 virtual void notifyStyle12(const PositionInfo&, bool is_starting = false) = 0;
24 virtual void notifyPool(const PoolInfo&) = 0;
25 virtual void notifyMoveList(int, const StatePtr&, const PGN&) = 0;
28 #endif // ICSLISTENER_H